rm -r path:どのレベルで質問を受け取らないのですか?

rm -r path:どのレベルで質問を受け取らないのですか?

パスを削除したいかどうか、すべてのレベルでプロンプトを出さないようにするにはどうすればよいですか?パス内のすべてのアイテムを削除したいですか?

ベストアンサー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/

おすすめ記事