aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-07-30 00:10:25 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-07-30 00:12:28 +1200
commit692419ad2a7026b3fd95b2cd4df1748892b579d6 (patch)
tree038704e0ba24950dabce615b121a54810e5be90d /bash/bashrc.d
parentAdd rule for kvlt(6) to change numbers to 666 (diff)
downloaddotfiles-692419ad2a7026b3fd95b2cd4df1748892b579d6.tar.gz
dotfiles-692419ad2a7026b3fd95b2cd4df1748892b579d6.zip
Change mkmv/mkcp from Bash funcs to sh scripts
Diffstat (limited to 'bash/bashrc.d')
-rw-r--r--bash/bashrc.d/mkcp.bash4
-rw-r--r--bash/bashrc.d/mkmv.bash4
2 files changed, 0 insertions, 8 deletions
diff --git a/bash/bashrc.d/mkcp.bash b/bash/bashrc.d/mkcp.bash
deleted file mode 100644
index 59eb0355..00000000
--- a/bash/bashrc.d/mkcp.bash
+++ /dev/null
@@ -1,4 +0,0 @@
-# Copy files into created directory in one call
-mkcp() {
- mkdir -p -- "${@: -1}" && cp -- "$@"
-}
diff --git a/bash/bashrc.d/mkmv.bash b/bash/bashrc.d/mkmv.bash
deleted file mode 100644
index 014fa150..00000000
--- a/bash/bashrc.d/mkmv.bash
+++ /dev/null
@@ -1,4 +0,0 @@
-# Move files into created directory in one call
-mkmv() {
- mkdir -p -- "${@: -1}" && mv -- "$@"
-}