パスを削除したいかどうか、すべてのレベルでプロンプトを出さないようにするにはどうすればよいですか?パス内のすべてのアイテムを削除したいですか?
ベストアンサー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/