Answers for "bash stderr null"

0

bash stderr null

command > /dev/null # stderr
command > /dev/null 2>&1 # stdout and stderr
command &> /dev/null # stdout and stderr
Posted by: Guest on November-13-2020
0

bash redirect output to null

command > /dev/null
#Example
echo "Hello World"
Hello World
echo "Hello World" > /dev/null
#Doesn't show anything
Posted by: Guest on April-07-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language