Answers for "bash silence error 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
0

bash silent errors

find / -type d -name "etc" -print 2>/dev/null
Posted by: Guest on December-18-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language