Delete all files/directories for Ubuntu
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
Author And Source
이 문제에 관하여(Delete all files/directories for Ubuntu), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cychoi74/Delete-all-filesdirectories-for-Ubuntu저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)