nohup or persistent process on Mac OS X ssh
- by devnull
I know this has been asked before but none of the answers seems to work in OS X mountain lion.
I would like to launch a process via SSH and close the terminal without kill the process.
nohup ccl64 -e '(ql:quickload :"file")' &
doesn't work. When the terminal is closed the process dies
nohup ccl64 -e '(ql:quickload :"file")'
same here
I think there must be a way. this is very annoying as it works as a standard in any linux system yet mac os x refuses to work with any of these combinations.
Thanks in advance