fish-shell/tests/count.out
Fabian Homborg e7a964fdfa [count] Allow counting lines from stdin
As a simple replacement for `wc -l`.

This counts both lines on stdin _and_ arguments.

So if "file" has three lines, then `count a b c < file` will print 6.

And since it counts newlines, like wc, `echo -n foo | count` prints 0.
2019-03-15 14:31:36 +01:00

29 lines
261 B
Text

####################
# no args
0
####################
# one args
1
####################
# two args
2
####################
# args that look like flags or are otherwise special
1
1
1
2
3
####################
# big counts
####################
# stdin
10
0
1