1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 12:45:59 +02:00

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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`