mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 23:46:30 +08:00
c2f6c6c1d2
darcs-hash:20060301165347-ac50b-3df9feec60dd9860e0988396d10b550a501f6802.gz
16 lines
949 B
Fish
16 lines
949 B
Fish
complete -c uniq -s c -l count -d (N_ "Print number of occurences")
|
|
complete -c uniq -s d -l repeated -d (N_ "Only print duplicates")
|
|
complete -c uniq -s D -l all-repeated -d (N_ "Remove non-duplicate lines") -f -x -a "
|
|
none\t'Remove none-duplicate lines'
|
|
prepend\t'Remove non-duplicate lines and print an empty line before each non-duplicate'
|
|
separate\t'Remove non-duplicate lines and print an empty line between each non-duplicate'
|
|
"
|
|
complete -c uniq -s f -l skip-fields -d (N_ "Avoid comparing first N fields") -r
|
|
complete -c uniq -s i -l ignore-case -d (N_ "Case insensitive")
|
|
complete -c uniq -s s -l skip-chars -d (N_ "Avoid comparing first N characters") -r
|
|
complete -c uniq -s u -l unique -d (N_ "Only print unique lines")
|
|
complete -c uniq -s w -l check-chars -d (N_ "Compare only specified number of characters") -r
|
|
complete -c uniq -l help -d (N_ "Display help and exit")
|
|
complete -c uniq -l version -d (N_ "Display version and exit")
|
|
|