I use the command $ nohup ... to start an application in the background so that I can close the terminal window afterwards.
Upon execution it creates the file ~/nohup.out.
Example:
orschiro@x230:~$ nohup /bin/bash -c "sleep 15 && python3 /home/orschiro/bin/show_state.py"
nohup: ignoring input and appending output to 'nohup.out'
How can I prevent nohup from creating nohup.out?