fish-shell/init/completions/sort.fish
axel d4034fc253 Yet another batch of description tweaks, as well as the last major checkin of translations to swedish (updated patch)
darcs-hash:20060111141735-ac50b-b6a9ac5d5d9eb8eac28dd39968cd28f99044e8f5.gz
2006-01-12 00:17:35 +10:00

21 lines
1.3 KiB
Fish

complete -c sort -s b -l ignore-leading-blanks -d (_ "Ignore leading blanks")
complete -c sort -s d -l dictionary-order -d (_ "Consider only blanks and alphanumerics")
complete -c sort -s f -l ignore-case -d (_ "Ignore case")
complete -c sort -s g -l general-numeric-sort -d (_ "Compare general numeric value")
complete -c sort -s i -l ignore-nonprinting -d (_ "Consider only printable")
complete -c sort -s M -l month-sort -d (_ "Compare month names")
complete -c sort -s n -l numeric-sort -d (_ "Compare string numerical value")
complete -c sort -s r -l reverse -d (_ "Reverse results")
complete -c sort -s c -l check -d (_ "Only check if sorted")
complete -c sort -s k -l key -d (_ "Define key")
complete -c sort -s m -l merge -d (_ "Merge sorted files")
complete -c sort -s o -l output -f -d (_ "Write to file")
complete -c sort -s s -l stable -d (_ "Stabilize sort")
complete -c sort -s S -l buffer-size -r -d (_ "Set memory buffer size")
complete -c sort -s t -l field-separator -d (_ "Field separator")
complete -c sort -s T -l temporary-directory -r -d (_ "Set temporary directory")
complete -c sort -s u -l unique -d (_ "Output only first of equal lines")
complete -c sort -s z -l zero-terminated -d (_ "Lines end with 0 byte")
complete -c sort -l help -d (_ "Display help and exit")
complete -c sort -l version -d (_ "Display version and exit")