mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
17 lines
242 B
Fish
17 lines
242 B
Fish
# Validate the behavior of the `count` command.
|
|
|
|
logmsg no args
|
|
count
|
|
|
|
logmsg one args
|
|
count x
|
|
|
|
logmsg two args
|
|
count x y
|
|
|
|
logmsg args that look like flags or are otherwise special
|
|
count -h
|
|
count --help
|
|
count --
|
|
count -- abc
|
|
count def -- abc
|