minor argument reordering - beautify
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
This commit is contained in:
parent
9d94beec68
commit
36f413173a
1 changed files with 4 additions and 4 deletions
|
@ -125,8 +125,8 @@ ${__myname}: [args] <interval name> <sources to backup>
|
||||||
ccollect creates (pseudo) incremental backups
|
ccollect creates (pseudo) incremental backups
|
||||||
|
|
||||||
-h, --help: Show this help screen
|
-h, --help: Show this help screen
|
||||||
-p, --parallel: Parallelise backup processes
|
|
||||||
-a, --all: Backup all sources specified in ${CSOURCES}
|
-a, --all: Backup all sources specified in ${CSOURCES}
|
||||||
|
-p, --parallel: Parallelise backup processes
|
||||||
-v, --verbose: Be very verbose (uses set -x)
|
-v, --verbose: Be very verbose (uses set -x)
|
||||||
-V, --version: Print version information
|
-V, --version: Print version information
|
||||||
|
|
||||||
|
@ -146,12 +146,12 @@ while [ "$#" -ge 1 ]; do
|
||||||
-a|--all)
|
-a|--all)
|
||||||
USE_ALL=1
|
USE_ALL=1
|
||||||
;;
|
;;
|
||||||
-v|--verbose)
|
|
||||||
set -x
|
|
||||||
;;
|
|
||||||
-p|--parallel)
|
-p|--parallel)
|
||||||
PARALLEL=1
|
PARALLEL=1
|
||||||
;;
|
;;
|
||||||
|
-v|--verbose)
|
||||||
|
set -x
|
||||||
|
;;
|
||||||
-V|--version)
|
-V|--version)
|
||||||
display_version
|
display_version
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue