@@ -32,11 +32,11 @@ Flags
32
32
has fixed length in the OUTPUT file.
33
33
-k If passed, temporary files and log files are not deleted. By default,
34
34
log files are only kept if a process failed.
35
- -s If passed, messages are silenced .
36
- -d If passed, extra debug messages are printed.
35
+ -s If passed, silent mode is enabled and all messages are suppressed .
36
+ -v If passed, verbose mode is enabled and extra messages are printed.
37
37
"
38
38
# Get arguments
39
- debug =false
39
+ verbose =false
40
40
dimname=lat # can also split along time dimension?
41
41
fixrec=false
42
42
keep=false
@@ -55,13 +55,13 @@ while [ $# -ne 0 ]; do
55
55
-k) keep=true ;;
56
56
-r) reverse=true ;;
57
57
-s) silent=true ;;
58
- -d) debug =true ;;
58
+ -v) verbose =true ;;
59
59
-* ) raise " Unknown argument ${1} ." ;;
60
60
* ) args+=(" $1 " ) ;;
61
61
esac
62
62
shift
63
63
done
64
- $debug && flag_ncks=' -D 2'
64
+ $verbose && flag_ncks=' -D 2'
65
65
[ -z " $pmax " ] && pmax=$nsplit # same as number of files
66
66
67
67
# Set up exit trap
@@ -94,7 +94,7 @@ input="${inputs[0]}"
94
94
export TIMEFORMAT=$' real %3R user %3U sys %3S' # default format in seconds
95
95
$silent && export TIMEFORMAT=' ' # set to empty string
96
96
$silent || echo " Running command: $cmd "
97
- $debug && {
97
+ $verbose && {
98
98
echo " Input file(s): ${inputs[*]} "
99
99
echo " Output file: $output "
100
100
}
@@ -226,7 +226,7 @@ avgtime() {
226
226
END {print "user " real / NR "s user " user / NR "s sys " sys / NR "s"}
227
227
'
228
228
}
229
- $debug && {
229
+ $verbose && {
230
230
echo " Average split time"
231
231
avgtime ' ^Copying slab'
232
232
echo " Average command time"
0 commit comments