rm: add Korean translation (#10895)

* rm : add Korean translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
pull/23/head
Ludev 2023-10-11 14:28:08 +09:00 committed by GitHub
parent 0bc2faa023
commit a171a92d44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
pages.ko/linux/rm.md Normal file
View File

@ -0,0 +1,25 @@
# rm
> 파일 또는 디렉터리 삭제.
> 같이 보기: `rmdir`.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/rm>.
- 특정 파일 삭제:
`rm {{경로/대상/파일1 경로/대상/파일2 ...}}`
- 존재하지 않는 파일은 무시하고 특정 파일 삭제:
`rm --force {{경로/대상/파일1 경로/대상/파일2 ...}}`
- 특정 파일을 삭제하기 전에 대화형 메시지를 표시하여 특정 파일을 삭제:
`rm --interactive {{경로/대상/파일1 경로/대상/파일2 ...}}`
- 특정 파일을 삭제하고 삭제한 파일 정보를 출력:
`rm --verbose {{경로/대상/파일1 경로/대상/파일2 ...}}`
- 특정 파일 및 디렉터리를 재귀적으로 삭제:
`rm --recursive {{경로/대상/파일_또는_폴더1 경로/대상/파일_또는_폴더2 ...}}`