I am running a Python script filename.py
via ssh. Once I'm logged into the remote machine, I run:
python filename.py &
However, when I close out of the terminal, it appears the python stops running. Why is this? I thought an ampersand &
at the end of a statement meant the program kept running?