1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 12:35:26 +02:00

fswatch: update Korean translation (#16656)

This commit is contained in:
Sebastiaan Speck 2025-06-03 14:34:57 +02:00 committed by GitHub
parent c9d7a5170a
commit d7ed195e09
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,16 +5,16 @@
- 파일 생성, 업데이트 또는 삭제 시 Bash 명령을 실행:
`fswatch {{경로/대상/파일}} | xargs -n 1 {{bash_명령어}}`
`fswatch {{경로/대상/파일}} | xargs {{[-n|--max-args]}} 1 {{bash_명령어}}`
- 하나 이상의 파일 또는 디렉터리를 감시:
`fswatch {{경로/대상/파일}} {{경로/대상/디렉토리}} {{path/to/another_directory/**/*.js}} | xargs -n 1 {{bash_명령어}}`
`fswatch {{경로/대상/파일}} {{경로/대상/디렉토리}} {{path/to/another_directory/**/*.js}} | xargs {{[-n|--max-args]}} 1 {{bash_명령어}}`
- 변경된 파일의 절대 경로를 출력:
`fswatch {{경로/대상/디렉토리}} | xargs -n 1 -I {} echo {}`
`fswatch {{경로/대상/디렉토리}} | xargs {{[-n|--max-args]}} 1 -I _ echo _`
- 이벤트 유형 별로 필터링:
`fswatch --event {{Updated|Deleted|Created}} {{경로/대상/디렉토리}} | xargs -n 1 {{bash_명령어}}`
`fswatch --event {{Updated|Deleted|Created}} {{경로/대상/디렉토리}} | xargs {{[-n|--max-args]}} 1 {{bash_명령어}}`