nohup command &> /dev/null &
This command still creates nohup.out file. Could you please help on how to avoid it?
nohup command &> /dev/null &
This command still creates nohup.out file. Could you please help on how to avoid it?
&> is not POSIX standard. You need to use this syntax:
nohup command >/dev/null 2>&1 &
Related: Difference between 2>&-, 2>/dev/null, |&, &>/dev/null and >/dev/null 2>&1