From d7ed195e090b06b6e322a9f3541dddff41423c36 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:34:57 +0200 Subject: [PATCH] fswatch: update Korean translation (#16656) --- pages.ko/common/fswatch.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages.ko/common/fswatch.md b/pages.ko/common/fswatch.md index f3ada8fcb1..35b7fef622 100644 --- a/pages.ko/common/fswatch.md +++ b/pages.ko/common/fswatch.md @@ -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_명령어}}`