mpv: fix typo, common/m*: add and update Korean translation (#14664)

* common/m*: add and update Korean translation

* mpv: fix typo
This commit is contained in:
코드싸이
2024-11-07 09:27:03 +09:00
committed by GitHub
parent cf45a79e8d
commit feb91d75ea
122 changed files with 2819 additions and 17 deletions

View File

@@ -15,18 +15,22 @@
`mv {{경로/대상/원본1 경로/대상/원본2 ...}} {{경로/대상/기존_폴더}}`
- 기존 파일을 덮어쓸 때 확인하지 않:
- 기존 파일을 덮어쓸 때 확인하지 않고 ([f]) 이동:
`mv -f {{경로/대상/원본}} {{경로/대상/목표}}`
`mv --force {{경로/대상/소스}} {{경로/대상/타겟}}`
- 파일 권한과 관계없이 기존 파일을 덮어쓸 때 확인 요청:
- 파일 권한과 관계없이 기존 파일을 덮어쓸 때 [i]대화형 확인 요청:
`mv -i {{경로/대상/원본}} {{경로/대상/목표}}`
`mv --interactive {{경로/대상/소스}} {{경로/대상/타겟}}`
- 대상 위치에 기존 파일이 있을 경우 덮어쓰지 않음:
- 대상에 기존 파일 덮어쓰지 않음 ([n]):
`mv -n {{경로/대상/원본}} {{경로/대상/목표}}`
`mv --no-clobber {{경로/대상/소스}} {{경로/대상/타겟}}`
- 파일 이동에 파일을 표시하는 자세한 모드로 이동:
- 파일 이동 후 [v]자세한 모드로 파일 보기:
`mv -v {{경로/대상/원본}} {{경로/대상/목표}}`
`mv --verbose {{경로/대상/소스}} {{경로/대상/타겟}}`
- 외부 도구를 사용하여 이동 가능한 파일을 수집하기 위해 [t]타겟 디렉터리 지정:
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv --target-directory {{경로/대상/타겟_디렉터리}}`