mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
68527ff20c
This ends up saving a surprising number of bytes.
7 lines
395 B
Fish
7 lines
395 B
Fish
complete -c wc -s c -l bytes -d "Print byte counts"
|
|
complete -c wc -s m -l chars -d "Print character counts"
|
|
complete -c wc -s l -l lines -d "Print newline counts"
|
|
complete -c wc -s L -l max-line-length -d "Print length of longest line"
|
|
complete -c wc -s w -l words -d "Print word counts"
|
|
complete -c wc -l help -d "Display help and exit"
|
|
complete -c wc -l version -d "Display version and exit"
|