> 
> I write to recommend a change to the "rm" command: When deleting the 
> files specified on the command line, when encountering one that doesn't 
> exist, after diagnosing the error, rm should immediately terminate 
> instead of the current procedure of continuing to delete files.

Thanks for the report.  However, POSIX requires the current behavior
of rm: http://www.opengroup.org/onlinepubs/009695399/utilities/rm.html

The only way we could change the behavior is by adding a new option,
but based on your proposed usage pattern, that won't do anything
for you.

Have you considered using shell functions or aliases to do the same
thing?  For example, in bash, some people like doing:

alias rm='rm -i'

--
Eric Blake




_______________________________________________
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to