mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 17:53:50 +02:00
rm: add Korean translation (#6729)
This commit is contained in:
parent
ff7516b063
commit
d8ddf742df
1 changed files with 24 additions and 0 deletions
24
pages.ko/common/rm.md
Normal file
24
pages.ko/common/rm.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# rm
|
||||||
|
|
||||||
|
> 파일 혹은 폴더를 삭제.
|
||||||
|
> 더 많은 정보: <https://www.gnu.org/software/coreutils/rm>.
|
||||||
|
|
||||||
|
- 임의의 경로에서 파일을 제거:
|
||||||
|
|
||||||
|
`rm {{파일의/경로}} {{다른/파일의/경로}}`
|
||||||
|
|
||||||
|
- 재귀적으로 폴더와 그 폴더내의 하위폴더들을 모두 제거:
|
||||||
|
|
||||||
|
`rm -r {{폴더의/경로}}`
|
||||||
|
|
||||||
|
- 강제로 폴더를 제거, 확인절차와 에러메시지를 띄우지 않음:
|
||||||
|
|
||||||
|
`rm -rf {{폴더의/경로}}`
|
||||||
|
|
||||||
|
- 여라개의 파일을 하나씩 확인받으면서 제거:
|
||||||
|
|
||||||
|
`rm -i {{파일들}}`
|
||||||
|
|
||||||
|
- 상세화면과 함께 파일을 제거, 삭제된 파일에 대해 메시지를 출력함:
|
||||||
|
|
||||||
|
`rm -v {{폴더의/경로/*}}`
|
Loading…
Add table
Reference in a new issue