mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
7 lines
463 B
Fish
7 lines
463 B
Fish
|
complete -c combine -d 'Combine sets of lines from two files using boolean operations'
|
||
|
complete -c combine -a and -d 'Output lines that are in both files'
|
||
|
complete -c combine -a not -d 'Output lines that are inf file1 but not in file2'
|
||
|
complete -c combine -a or -d 'Output lines that are in file1 or in file2'
|
||
|
complete -c combine -a xor -d 'Output lines that are in either file1 or file2, but not in both files'
|
||
|
complete -c combine -a - -d 'Read file from stdin'
|