Simplify.
In `rm -f ... || :` the `|| :` part is not needed since `-f` ensures that `rm` always will succeed even if some files given as arguments are missing.
Loading
Please register or sign in to comment
In `rm -f ... || :` the `|| :` part is not needed since `-f` ensures that `rm` always will succeed even if some files given as arguments are missing.