wc: add Korean translation (#11109)

This commit is contained in:
HoJeong Im
2023-10-20 14:42:23 +09:00
committed by GitHub
parent ab59f1c784
commit 8d897de05d

28
pages.ko/common/wc.md Normal file
View File

@@ -0,0 +1,28 @@
# wc
> 줄 단어 및 바이트 수 계산.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/wc>.
- 파일의 모든 줄 수 계산:
`wc --lines {{경로/대상/파일}}`
- 파일의 모든 단어 수 계산:
`wc --words {{경로/대상/파일}}`
- 파일의 모든 바이트 수 계산:
`wc --bytes {{경로/대상/파일}}`
- 파일의 모든 문자 수 계산(멀티바이트 문자 고려):
`wc --chars {{경로/대상/파일}}`
- `stdin`의 모든 줄, 단어 및 바이트 수를 계산:
`{{find .}} | wc`
- 가장 긴 줄의 길이를 문자 수로 계산:
`wc --max-line-length {{경로/대상/파일}}`