diff options
author | Clint Adams <clint@users.sourceforge.net> | 2006-04-30 22:02:27 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2006-04-30 22:02:27 +0000 |
commit | 33185e23a33526077e4cac53443c43546dfff581 (patch) | |
tree | b08b122e185269868aa8042654d4aa087951a08a /Completion/Unix | |
parent | f52938607d0e2ad631efb193e2da14c6cb687552 (diff) | |
download | zsh-33185e23a33526077e4cac53443c43546dfff581.tar.gz zsh-33185e23a33526077e4cac53443c43546dfff581.tar.xz zsh-33185e23a33526077e4cac53443c43546dfff581.zip |
22435: completion for GNU comm.
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_comm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_comm b/Completion/Unix/Command/_comm new file mode 100644 index 000000000..30ca49911 --- /dev/null +++ b/Completion/Unix/Command/_comm @@ -0,0 +1,10 @@ +#compdef comm + +_arguments \ + '-1[suppress lines unique to FILE1]' \ + '-2[suppress lines unique to FILE2]' \ + '-3[suppress lines that appear in both files]' \ + '--help' \ + '--version' \ + '1:file1 to compare:_files' \ + '2:file2 to compare:_files' |