Delete all files/directories for Ubuntu

542 단어 rmubunturm

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

좋은 웹페이지 즐겨찾기