1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:02:09 +02:00

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

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 {{경로/대상/파일}}`