How does nohup work? [closed]

前提是你 提交于 2019-12-05 04:27:04

Use the source, Luke!

(Extra characters added to keep the new answer length rules happy.)

It is equivalent to setting the SIGHUP handler to SIG_IGN, ie.

signal(SIGHUP, SIG_IGN);

The Wikipedia article about nohup explains it pretty well.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!