aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d
diff options
context:
space:
mode:
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 -- "$@"
-}