Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: _comm
- X-seq: zsh-workers 22435
- From: Clint Adams <clint@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: PATCH: _comm
- Date: Sun, 30 Apr 2006 17:59:44 -0400
- Mail-followup-to: zsh-workers@xxxxxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
comm from GNU coreutils
Index: Completion/Unix/Command/_comm
===================================================================
RCS file: Completion/Unix/Command/_comm
diff -N Completion/Unix/Command/_comm
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ Completion/Unix/Command/_comm 30 Apr 2006 21:58:34 -0000
@@ -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'
Messages sorted by:
Reverse Date,
Date,
Thread,
Author