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

View File

@@ -0,0 +1,20 @@
# watchexec
> 파일이 변경될 때 임의의 명령을 실행.
> 더 많은 정보: <https://github.com/watchexec/watchexec>.
- 현재 디렉토리의 파일이 변경될 때 `ls -la` 실행:
`watchexec {{ls -la}}`
- 현재 디렉토리의 JavaScript, CSS, HTML 파일이 변경될 때 `make` 실행:
`watchexec --exts {{js,css,html}} make`
- `lib` 또는 `src` 디렉토리의 파일이 변경될 때 `make` 실행:
`watchexec --watch {{lib}} --watch {{src}} {{make}}`
- 현재 디렉토리의 파일이 변경될 때 `my_server` 호출/재시작, 자식 프로세스를 중지하기 위해 `SIGKILL` 신호 전송:
`watchexec --restart --stop-signal {{SIGKILL}} {{my_server}}`