mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 09:42:07 +02:00

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com>
528 B
528 B
rm
파일 혹은 폴더를 삭제. 더 많은 정보: https://www.gnu.org/software/coreutils/rm.
- 임의의 경로에서 파일을 제거:
rm {{파일의/경로 다른/파일의/경로 ...}}
- 여라개의 파일을 하나씩 확인받으면서 제거:
rm -i {{파일들}}
- 상세화면과 함께 파일을 제거, 삭제된 파일에 대해 메시지를 출력함:
rm -v {{폴더의/경로/*}}
- 재귀적으로 폴더와 그 폴더내의 하위폴더들을 모두 제거:
rm -r {{폴더의/경로}}