지정한 디렉토리를 포함하여 내부 파일 및 하위 디렉토리를 모두 삭제
$ 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