aboutsummaryrefslogtreecommitdiffstats
path: root/src/completion
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-11-14 04:45:38 +0100
committerMattias Andrée <maandree@operamail.com>2014-11-14 04:45:38 +0100
commit59a32d06298a284b81f23e06eb50d8cc1938536f (patch)
treed5392944a696898dc48e8c0997cbada804d294f9 /src/completion
parentadd tab-completion in shell (diff)
downloadsha3sum-59a32d06298a284b81f23e06eb50d8cc1938536f.tar.gz
sha3sum-59a32d06298a284b81f23e06eb50d8cc1938536f.tar.bz2
sha3sum-59a32d06298a284b81f23e06eb50d8cc1938536f.tar.xz
swap upper and lower case for short options (except for -h)
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/completion')
-rw-r--r--src/completion22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/completion b/src/completion
index fdc9852..e2ca0b7 100644
--- a/src/completion
+++ b/src/completion
@@ -20,20 +20,20 @@
(multiple unargumented
((options -h --help) (complete --help) (desc 'Display option summary'))
- ((options -U --upper --uppercase --upper-case) (complete --upper-case) (desc 'Use upper-case output'))
- ((options -L --lower --lowercase --lower-case) (complete --lower-case) (desc 'Use lower-case output'))
- ((options -B --binary) (complete --binary) (desc 'Use binary output'))
- ((options -X --hex --hex-input) (complete --hex-input) (desc 'Use hexadecimal input'))
- ((options -V --verbose) (complete --verbose) (desc 'Be verbose'))
+ ((options -u --upper --uppercase --upper-case) (complete --upper-case) (desc 'Use upper-case output'))
+ ((options -l --lower --lowercase --lower-case) (complete --lower-case) (desc 'Use lower-case output'))
+ ((options -b --binary) (complete --binary) (desc 'Use binary output'))
+ ((options -x --hex --hex-input) (complete --hex-input) (desc 'Use hexadecimal input'))
+ ((options -v --verbose) (complete --verbose) (desc 'Be verbose'))
)
(multiple argumented
- ((options -r --bitrate --rate) (complete --rate) (arg RATE) (files -0) (desc 'Select rate'))
- ((options -c --capacity) (complete --capacity) (arg CAPACITY) (files -0) (desc 'Select capacity'))
- ((options -n -o --output-size --output) (complete --output-size) (arg SIZE) (files -0) (desc 'Select output size'))
- ((options -s -b --state-size --state) (complete --state-size) (arg SIZE) (files -0) (desc 'Select state size'))
- ((options -w --word-size --word) (complete --word-size) (arg SIZE) (files -0) (desc 'Select word size'))
- ((options -z --squeezes) (complete --squeezes) (arg COUNT) (files -0) (desc 'Select squeeze count'))
+ ((options -R --bitrate --rate) (complete --rate) (arg RATE) (files -0) (desc 'Select rate'))
+ ((options -C --capacity) (complete --capacity) (arg CAPACITY) (files -0) (desc 'Select capacity'))
+ ((options -N -O --output-size --output) (complete --output-size) (arg SIZE) (files -0) (desc 'Select output size'))
+ ((options -S -B --state-size --state) (complete --state-size) (arg SIZE) (files -0) (desc 'Select state size'))
+ ((options -W --word-size --word) (complete --word-size) (arg SIZE) (files -0) (desc 'Select word size'))
+ ((options -Z --squeezes) (complete --squeezes) (arg COUNT) (files -0) (desc 'Select squeeze count'))
)
)