From 692419ad2a7026b3fd95b2cd4df1748892b579d6 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 30 Jul 2016 00:10:25 +1200 Subject: Change mkmv/mkcp from Bash funcs to sh scripts --- bash/bashrc.d/mkcp.bash | 4 ---- bash/bashrc.d/mkmv.bash | 4 ---- 2 files changed, 8 deletions(-) delete mode 100644 bash/bashrc.d/mkcp.bash delete mode 100644 bash/bashrc.d/mkmv.bash (limited to 'bash/bashrc.d') 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 -- "$@" -} -- cgit v1.2.3