경로를 삭제하고 싶은지 모든 수준에서 묻는 메시지를 피하려면 어떻게 해야 합니까? 경로에 있는 모든 항목을 삭제하고 싶나요?
답변1
-I
한 번만 메시지를 표시하려면 스위치를 사용할 수 있습니다.
rm -rI sampledir/
에서 man rm
:
-I prompt once before removing more than three files, or when removing recursively.
Less intrusive than -i, while still giving protection against most mistake
-f
"프롬프트 없음" 의 경우 :
-f, --force
ignore nonexistent files and arguments, never prompt
그래서:
rm -rf sampledir/