🖥
Linux | rm -f の役目は「確認を飛ばす」だけではない
「存在しないファイルを削除しようとした時」に「エラーメッセージを出さない」という効能もある。
-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オープンチャットもご利用ください。
公開日時
2016-07-28
Discussion