[Bash] Making program working after close of SSH session

[Bash] Making program working after close of SSH session

If you want to make your program working even if ssh session is close, you can use following command:

nohup program > output

If you close SSH session (or terminal), program will be still executed and standard output of program will be send to output file.

Leave a Reply

Your email address will not be published. Required fields are marked *