wc: add pipe example (#4067)

Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
This commit is contained in:
jassler
2020-05-29 13:01:37 +02:00
committed by GitHub
parent c7ae6b3d8a
commit 34519ed770

View File

@@ -17,3 +17,7 @@
- Count characters in file (taking multi-byte character sets into account):
`wc -m {{file}}`
- Use standard input to count lines, words and characters (bytes) in that order:
`{{find .}} | wc`