rm: add Korean translation (#6729)

beep
sooohka 2021-10-04 17:27:34 +09:00 committed by GitHub
parent ff7516b063
commit d8ddf742df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
pages.ko/common/rm.md Normal file
View File

@ -0,0 +1,24 @@
# rm
> 파일 혹은 폴더를 삭제.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/rm>.
- 임의의 경로에서 파일을 제거:
`rm {{파일의/경로}} {{다른/파일의/경로}}`
- 재귀적으로 폴더와 그 폴더내의 하위폴더들을 모두 제거:
`rm -r {{폴더의/경로}}`
- 강제로 폴더를 제거, 확인절차와 에러메시지를 띄우지 않음:
`rm -rf {{폴더의/경로}}`
- 여라개의 파일을 하나씩 확인받으면서 제거:
`rm -i {{파일들}}`
- 상세화면과 함께 파일을 제거, 삭제된 파일에 대해 메시지를 출력함:
`rm -v {{폴더의/경로/*}}`