From: Hugo Villeneuve Date: Wed, 5 Feb 2014 03:00:00 +0000 (-0500) Subject: Make tarbz2 less verbose X-Git-Url: http://gitweb.hugovil.com/?p=hvutilities.git;a=commitdiff_plain;h=1ec225aa6edcc264613071a943f99ba7f6aa0d06 Make tarbz2 less verbose --- diff --git a/scripts/tarbz2 b/scripts/tarbz2 index a16c8c1..c830504 100755 --- a/scripts/tarbz2 +++ b/scripts/tarbz2 @@ -59,6 +59,6 @@ if [ ! -d ${DIR} ]; then fi # Decompressing file to standard output and piping result to bzip2 -tar cvf - ${DIR} | ${BZIP2_BIN} -9 > ${DEST}.tar.bz2 +tar cf - ${DIR} | ${BZIP2_BIN} -9 > ${DEST}.tar.bz2 exit $?