diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:47:37 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:47:37 +0000 |
commit | d088cee51bcb81fe8c4f4983548b6f214cd6e907 (patch) | |
tree | 19e2c3f34569e45c69dd6b670c25cd30db270717 /Completion | |
parent | ef4bb3827e805fbf58f4ae15c19eefcda548109f (diff) | |
download | zsh-d088cee51bcb81fe8c4f4983548b6f214cd6e907.tar.gz zsh-d088cee51bcb81fe8c4f4983548b6f214cd6e907.tar.xz zsh-d088cee51bcb81fe8c4f4983548b6f214cd6e907.zip |
moved to Completion/Unix/Command/_dd
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/User/_dd | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Completion/User/_dd b/Completion/User/_dd deleted file mode 100644 index 2458541ea..000000000 --- a/Completion/User/_dd +++ /dev/null @@ -1,13 +0,0 @@ -#defcomp dd - -if [[ -iprefix conv= ]]; then - # If there's a comma present, ignore up to the last one. The - # test alone will have that effect. - [[ -string , ]] - complist -S, -q \ - -k '(ascii ebcdic ibm block unblock lcase ucase swab noerror sync)' -elif [[ -iprefix 'if=' || -iprefix 'of=' ]]; then - _files -else - complist -S '=' -k '(if of ibs obs bs cbs skip files seek count conv)' -fi |