bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#10819: [BUG][RM]


From: Voelker, Bernhard
Subject: bug#10819: [BUG][RM]
Date: Thu, 16 Feb 2012 11:17:16 +0100

Jim Meyering wrote:
> Davide Brini wrote:
> ...
> > At least in bash, but I suppose in other shells too,
> >
> > rm -rf #*
> >
> > treats the "#*" part as a comment, and (if you remove the "-f") complains
> > about missing operand to rm.
> 
> That is the default, but for an interactive shell,
> that behavior can be changed:
> 
>     $ echo a b # c
>     a b
>     $ shopt -u interactive_comments
>     $ echo a b # c
>     a b # c

I think Davide's point is not about the # comment ... rm won't see
that on argv anyway. The point is that 'rm -f' does not complain about
missing operands while 'rm' does:

  $ rm 
  rm: missing operand
  Try `rm --help' for more information.
  $ rm -f
  $

According to the info, '-f' just silences error messages for files
which do not exist (and never to prompt for confirmation), but why
should it also affect the "missing operand" message?

Have a nice day,
Berny










reply via email to

[Prev in Thread] Current Thread [Next in Thread]