tarbz2: crée l'archive dans le répertoire courant
authorroot <root@364a67c3-989e-7be9-548d-dae8560ea662>
Mon, 21 Dec 2009 08:51:12 +0000 (08:51 +0000)
committerroot <root@364a67c3-989e-7be9-548d-dae8560ea662>
Mon, 21 Dec 2009 08:51:12 +0000 (08:51 +0000)
stage2/hv-utilities/tarbz2

index e2b50c9..e7a6d93 100755 (executable)
@@ -12,6 +12,7 @@ if [ $# -ne 1 ]; then
 fi
 
 DIR=${1%/}
+BASE=$(basename ${DIR})
 
 # Checking if directory exists.
 if [ ! -d ${DIR} ]; then
@@ -20,6 +21,6 @@ if [ ! -d ${DIR} ]; then
 fi
     
 # Decompressing file to standard output and piping result to bzip2
-tar cvf - ${DIR} | bzip2 -9 > ${DIR}.tar.bz2
+tar cvf - ${DIR} | bzip2 -9 > ${BASE}.tar.bz2
 
 exit $?