I have a Shell command that I\'d like to run in the background and I\'ve read that this can be done by suffixing an & to the command which causes it to run as a
&
Use nohup while directing the output to /dev/null
nohup command &>/dev/null &