Alex wrote:
Hi
I try to redirect output to /dev/null, but it doesn't work (bash).
The command is: md5sum -c MD5SUMS 2>/dev/null
Why doesn't it work?
probably because you want to redirect stdout and stderr
How can I do that?
try this:
md5sum -c MD5SUMS > /dev/null 2>&1
Yves
Al