X-Git-Url: https://git.ao2.it/config/bash.git/blobdiff_plain/b8788419dde6ed6e9c2bb430957f87ea1677467c..ef18a3253cea6e279b2a5de23e9a1edef3bfa941:/.bash/aliases.d/archives?ds=inline
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"
}