We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I don't know if it's intentional or not, but trash (unlike rm) exits with a non-zero error code for non-existent files when using it with the -f flag.
trash
rm
-f
The man-page for rm says the following for the -f-flag:
man
If the file does not exist, do not display a diagnostic message or modify the exit status to reflect an error.
Example:
$ rm -f imaginary-file && echo "done" done $ trash -f imaginary-file && echo "done" trash: imaginary-file: path does not exist
The text was updated successfully, but these errors were encountered:
This is indeed problematic!
Sorry, something went wrong.
No branches or pull requests
I don't know if it's intentional or not, but
trash
(unlikerm
) exits with a non-zero error code for non-existent files when using it with the-f
flag.The
man
-page forrm
says the following for the-f
-flag:Example:
The text was updated successfully, but these errors were encountered: