File: _dd

package info (click to toggle)
zsh-beta 4.3.6-dev-0%2B20080723-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 14,752 kB
  • ctags: 7,403
  • sloc: ansic: 90,889; sh: 5,568; makefile: 836; perl: 745; awk: 381; 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'