1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-11-01 18:30:55 +01:00

22435: completion for GNU comm.

This commit is contained in:
Clint Adams 2006-04-30 22:02:27 +00:00
parent f52938607d
commit 33185e23a3
2 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2006-04-30 Clint Adams <clint@zsh.org>
* 22435: Completion/Unix/Command/_comm: completion for
GNU comm.
2006-04-28 Clint Adams <clint@zsh.org>
* 22434, intrigeri@boum.org:

View file

@ -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'