mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-23 17:01:05 +02:00
14 lines
708 B
Text
14 lines
708 B
Text
#compdef dd
|
|
|
|
_values -S '=' 'option' \
|
|
'if[specify input file]:input file:_tilde_files' \
|
|
'of[specify output file]:output file:_tilde_files' \
|
|
'ibs[input block size]:block size (bytes)' \
|
|
'obs[output block size]:block size (bytes)' \
|
|
'bs[block size]:block size (bytes)' \
|
|
'cbs[conversion buffer size]:buffer size (bytes)' \
|
|
'skip[input blocks initially skipped]:blocks' \
|
|
'seek[output blocks initially skipped]:blocks' \
|
|
'files[specify number of input files to copy and concatenate]:number of files' \
|
|
'count[number of input blocks to copy]:blocks' \
|
|
'conv[specify conversions to apply]:conversion:_values -s , "conversion" ascii ebcdic ibm block unblock lcase ucase swab noerror sync'
|