about summary refs log tree commit diff
path: root/Completion/Unix/Command/_comm
blob: 30ca499118b4d94ff74084002f544bc586bcd95f (plain) (blame)
1
2
3
4
5
6
7
8
9
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'