w, wc: add Polish translation (#7327)

This commit is contained in:
Krzysztof Bociurko
2021-11-04 11:06:14 +01:00
committed by GitHub
parent 3a10556f49
commit 8fa4693fba
4 changed files with 46 additions and 4 deletions

View File

@@ -5,19 +5,19 @@
- Count lines in file:
`wc -l {{file}}`
`wc -l {{path/to/file}}`
- Count words in file:
`wc -w {{file}}`
`wc -w {{path/to/file}}`
- Count characters (bytes) in file:
`wc -c {{file}}`
`wc -c {{path/to/file}}`
- Count characters in file (taking multi-byte character sets into account):
`wc -m {{file}}`
`wc -m {{path/to/file}}`
- Use standard input to count lines, words and characters (bytes) in that order: