Preventing the error messege of the command being printed using redirection in shell scripts code example
Example: bash redirect output to null
command > /dev/null
#Example
echo "Hello World"
Hello World
echo "Hello World" > /dev/null
#Doesn't show anything