Answers for "bash silence output"

2

bash silence output

echo no stdout 1>/dev/null # no stdout
echo no stderr 2>/dev/null # no stderr
echo no output &>/dev/null # no stdout and stderr
Posted by: Guest on October-17-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language