diff --git a/bash/ucftar_pack b/bash/ucftar_pack index d907474..4852d19 100755 --- a/bash/ucftar_pack +++ b/bash/ucftar_pack @@ -1,10 +1,10 @@ #!/bin/bash display_help() { (>&2 echo "Usage: $(basename "$0") [-hv] [-f outfile] filename") - (>&2 echo "UCF archive packer v1.0") + (>&2 echo "UCF tar packer") (>&2 echo) (>&2 echo " filename path to arbitrary file with correct sequence number") - (>&2 echo " -f, --file output file (default: archive_XXXX.ucf)") + (>&2 echo " -f, --file output file (default: snapshot_XXXX.ucf.tar)") (>&2 echo " -h, --help display this help message") (>&2 echo " -v, --verbose verbose output") } @@ -59,7 +59,7 @@ fi # Construct output filename if not specified if [ -z "$fout" ]; then - fout="archive${seqnum}.ucf" + fout="snapshot${seqnum}.ucf.tar" fi # Display verbose info