quiet
option should do that:
-q, --quiet suppress non-error messages
You can redirect stdout
and stderr
to /dev/null
with something like:
<command> 2>&1 >/dev/null
quiet
option should do that:
-q, --quiet suppress non-error messages
You can redirect stdout
and stderr
to /dev/null
with something like:
<command> 2>&1 >/dev/null