Delete all files/directories for Ubuntu

Changyeol Choi·2021년 1월 20일
0

Ubuntu

목록 보기
6/8

rm

지정한 디렉토리를 포함하여 내부 파일 및 하위 디렉토리를 모두 삭제

$ rm -rf /path/to/directory

디렉토리 내의 파일 및 하위 디렉토리만 모두 삭제

rm -rf /path/to/directory/*

rm - stands for remove
-f - stands for force which is helpful when you don't want to be asked/prompted if you want to remove an archive, for example.
-r - stands for recursive which means that you want to go recursively down every folder and remove everythin

profile
10년 후...내 모습을 위한 첫걸음

0개의 댓글