8 lines
399 B
Fish
8 lines
399 B
Fish
complete -c wc -s c -l bytes -d 'Print the byte counts'
|
|
complete -c wc -s m -l chars -d 'Print the character counts'
|
|
complete -c wc -s l -l lines -d 'Print the line counts'
|
|
complete -c wc -s L -l max-line-length -d 'Print the maximum display width'
|
|
complete -c wc -s w -l words -d 'Print the word counts'
|
|
complete -c wc -s h -l help -d 'Print help'
|
|
complete -c wc -s V -l version -d 'Print version'
|