common/w*: add Korean translation (#14523)

This commit is contained in:
코드싸이
2024-11-02 13:59:52 +09:00
committed by GitHub
parent 8a477df704
commit 8bcc0ead21
58 changed files with 1268 additions and 0 deletions

20
pages.ko/common/watch.md Normal file
View File

@@ -0,0 +1,20 @@
# watch
> 프로그램을 주기적으로 실행하여 전체 화면에 출력.
> 더 많은 정보: <https://manned.org/watch>.
- 명령을 반복 실행하고 결과를 표시:
`watch {{명령어}}`
- 60초마다 명령을 재실행:
`watch -n {{60}} {{명령어}}`
- 디렉토리의 내용을 모니터링하고 변경된 부분을 강조:
`watch -d {{ls -l}}`
- 파이프라인을 반복 실행하고 결과를 표시:
`watch '{{명령어_1}} | {{명령어_2}} | {{명령어_3}}'`