On Wed, Sep 08, 2004 at 09:55:01AM +0200, Javier Fern�ndez-Sanguino Pe�a wrote:
> 
> -----------------------------
> $ touch test
> $ ln -s test testl
> $ [ -e testl ] && echo true
> true
> $ rm test
> $ [ -e testl ] && echo true
> -----------------------------


Sorry, the example uses the bash builtin, when I should have used test 
directly (it exhibits the same behaviour)

$ touch test
$ ln -s test testl
$ test -e testl && echo true
true
$ rm test
rm: remove regular empty file `test'? y
$ test -e testl && echo true

Probably Bash's manpage needs ammendment too if the test manpage is 
modified.

Regards

Javier

Attachment: signature.asc
Description: Digital signature

_______________________________________________
Bug-coreutils mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to