how to exit zsh, but leave running jobs open?
I had a problem with rss feeder script for my web page , rss parser runs on my friend’s server. The problem is when i login and run the script, it works , but when i exit from terminal it stops. I tried multiple commands but none of them worked. Finally I found a solution!
- node command.js & => NOT WORKING
- node command.js &! => NOT WORKING
- node command.js => CTRL + Z => bg => NOT WORKING
- nohup
& disown => WORKS!