X-Git-Url: https://git.ao2.it/config/bash.git/blobdiff_plain/89d0e7e4ee392615335226b9cd338add542659e9..ef18a3253cea6e279b2a5de23e9a1edef3bfa941:/.bash/aliases.d/archives diff --git a/.bash/aliases.d/archives b/.bash/aliases.d/archives index b708078..bd2a435 100644 --- a/.bash/aliases.d/archives +++ b/.bash/aliases.d/archives @@ -7,7 +7,7 @@ then function gztar() { [ -d "$1" ] || { echo "usage: gztar [tar options]" 1>&2; exit 1; } - DIR="$1" + local DIR="$1" shift tar "$@" -czvf "$(basename "$DIR").tar.gz" "$DIR" } @@ -15,7 +15,7 @@ then function bztar() { [ -d "$1" ] || { echo "usage: bztar [tar options]" 1>&2; exit 1; } - DIR="$1" + local DIR="$1" shift tar "$@" -cjvf "$(basename "$DIR").tar.bz2" "$DIR" } @@ -23,7 +23,7 @@ then function xztar() { [ -d "$1" ] || { echo "usage: xztar [tar options]" 1>&2; exit 1; } - DIR="$1" + local DIR="$1" shift tar "$@" -cJvf "$(basename "$DIR").tar.xz" "$DIR" }