I have a program that outputs to stdout and would like to silence that output in a Bash script while piping to a file.
For example, running the program will output:<
Try with:
myprogram &>/dev/null
to get no output