🖥

Linux | rm -f の役目は「確認を飛ばす」だけではない

2023/08/26に公開

「存在しないファイルを削除しようとした時」に「エラーメッセージを出さない」という効能もある。

-f
Attempt to remove the files without prompting for confirmation, regardless of the file's permissions.
If the file does not exist, do not display a diagnostic message or modify the exit status to reflect an error.
The -f option overrides any previous -i options.

普通なら怒られるところでも。

$ rm not_exist_file
rm: not_exist_file: No such file or directory

-f なら何も言われない。

$ rm -f not_exist_file

参考

  • rm man

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

Twitter

https://twitter.com/YumaInaura

公開日時

2016-07-28

Discussion