wc: add pipe example (#4067)

Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
client-spec/clarity
jassler 2020-05-29 13:01:37 +02:00 committed by GitHub
parent c7ae6b3d8a
commit 34519ed770
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

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`