From 6744db0df09263a9dee9b87bf1ace6e64380f511 Mon Sep 17 00:00:00 2001 From: Horea Christian Date: Wed, 11 Jan 2017 23:53:18 +0100 Subject: [PATCH] using reported command line string for actual command as well --- mkstage4.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkstage4.sh b/mkstage4.sh index 19293d0..6fdd277 100755 --- a/mkstage4.sh +++ b/mkstage4.sh @@ -145,7 +145,7 @@ then echo "example: \$ `basename $0` -s /my-backup --exclude=/etc/ssh/ssh_host*" echo "" echo "COMMAND LINE PREVIEW:" - echo "tar $TAR_OPTIONS -f $STAGE4_FILENAME * $EXCLUDES $OPTIONS" + echo "tar $TAR_OPTIONS $EXCLUDES $OPTIONS -f $STAGE4_FILENAME *" echo "" echo -n "Type \"yes\" to continue or anything else to quit: " read AGREE @@ -154,7 +154,7 @@ fi # start stage4 creation: if [ "$AGREE" == "yes" ] then - tar $TAR_OPTIONS $OPTIONS -f $STAGE4_FILENAME * $EXCLUDES + tar $TAR_OPTIONS $EXCLUDES $OPTIONS -f $STAGE4_FILENAME * fi exit 0