From 36f413173aa3e1cc4453f4799c331258fd430bd3 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sun, 25 Oct 2009 15:30:55 +0100 Subject: [PATCH] minor argument reordering - beautify Signed-off-by: Nico Schottelius --- ccollect.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ccollect.sh b/ccollect.sh index ca4e890..3d13bfc 100755 --- a/ccollect.sh +++ b/ccollect.sh @@ -125,8 +125,8 @@ ${__myname}: [args] ccollect creates (pseudo) incremental backups -h, --help: Show this help screen - -p, --parallel: Parallelise backup processes -a, --all: Backup all sources specified in ${CSOURCES} + -p, --parallel: Parallelise backup processes -v, --verbose: Be very verbose (uses set -x) -V, --version: Print version information @@ -146,12 +146,12 @@ while [ "$#" -ge 1 ]; do -a|--all) USE_ALL=1 ;; - -v|--verbose) - set -x - ;; -p|--parallel) PARALLEL=1 ;; + -v|--verbose) + set -x + ;; -V|--version) display_version ;;