Redirect of stdout and stderr work on linux, osx and unix. Because of this is not under `Linux things...` section! :)
# To suppress error:
./somescript.sh 2> /dev/null
# To suppress out:
./somescript.sh 1> /dev/null
# To suppress both:
./somescript.sh 2>&1 > /dev/null