Answers for "shell redirect all to /dev/null"

0

shell redirect all to /dev/null

command &>/dev/null
Posted by: Guest on December-17-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