开发者

running the process in a background

开发者 https://www.devze.com 2023-02-17 03:01 出处:网络
If I have have a process on UNIX and if i want to run it in the background and even if i close my terminal I need it to be running in the开发者_运维技巧 background until it completes.

If I have have a process on UNIX and if i want to run it in the background and even if i close my terminal I need it to be running in the开发者_运维技巧 background until it completes.

How do I do it?


You're looking for nohup.


You could run it with nohup. nohup wiki

[edit] Ah ignacio you beat me to it :)


You need to add & in the end of the command.

Check this.

0

精彩评论

暂无评论...
验证码 换一张
取 消