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
|
||||
|
||||
-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
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue