12
ファイルが存在しない場合にrmがエラーを出さないようにするにはどうすればよいですか?
コンパイルの最後にいくつかの役に立たないファイルをクリーンアップするメイクファイルを書いています。ターゲットがすでに作成されている場合、もちろんそのターゲットはスキップされ、無用なファイルはそこにない場合があります。だから私がこれを行うと: rm lexer.ml interpparse.ml interpparse.mli ファイルの1つが存在しないため、エラーが発生する場合があります。rmこれらのファイルを無視するように指示する方法はありますか? manページを読むと、次のオプションが表示されます。 -f Attempt to remove the files without prompting for confirma- tion, 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 …