File: _dd

package info (click to toggle)
zsh-beta 4.1.0-dev-4-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 10,064 kB
  • ctags: 6,159
  • sloc: ansic: 73,617; sh: 4,600; makefile: 630; perl: 623; awk: 293; sed: 16
file content (17 lines) | stat: -rw-r--r-- 812 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#compdef dd

_values -w 'option' \
  'if[specify input file]:input file:_tilde_files' \
  'of[specify output file]:output file:_tilde_files' \
  '(bs)ibs[input block size]:block size (bytes)' \
  '(bs)obs[output block size]:block size (bytes)' \
  '(ibs obs)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
    "(ebcdic ibm)ascii" "(ascii ibm)ebcdic" "(ascii ebcdic)ibm"
    "(unblock)block" "(block)unblock"
    "(ucase)lcase" "(lcase)ucase" swab noerror sync'