How do I suppress Error message or is it possible?
For example,
$ cat makefile
all:
- ls *.zzz 2>/dev/null
$ make
ls *.zzz 2>/dev/null
make: [all] Error 1 (ignored)
I do not want the last line
make: [all] Error 1 (ignored)
to be shown.
Thanks.
James
_______________________________________________
help-gnu-utils mailing list
help-gnu-utils gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-utils
|