diff options
Diffstat (limited to 'Completion')
-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' |