# 1 = standard output
# 2 = standard error
# >/dev/null = send stdout to /dev/null
# 2>&1 = send stderr to stdout (which in turn is sent to /dev/null)
/home/chris/foo.sh >/dev/null 2>&1