10 Oct
2007
10 Oct
'07
10:20 a.m.
On Wed, Oct 10, 2007 at 09:53:17AM +0100, Chris Glover wrote:
Try the following
mount -a 2>&1 > /dev/null
The 2>&1 forces STDERR to goto STDOUT, which you caqn then send to /dev/null.
Wrong ordering... mount -a > /dev/null 2>&1 works better ;) -- Brett Parker