You are not logged in.
Hi! When I do "truecrypt -t -l", I get a message: "Error: No volumes mounted" if nothing encrypted is mounted. And I use this in a script which shouldn't output this message if no encrypted volumes mounted. I haven't found any "silent" options in man page. Is it possible to silence this output?
Offline
You could redirect stderr:
some bad command 2> /dev/null
but it will also hide any and all other problems ...
Offline
Thanks! Will "&>" also do the same?
Offline