linux的命令的前后台

发布于 2022-10-15 09:23:01 字数 81 浏览 17 评论 0

在linux中我执行了一个命令,命令后面加了& disown,请问怎么把这个命令启动在前台,
&,nohup,disown是 什么意思

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

不可一世的女人 2022-10-22 09:23:01

STFW……

失退 2022-10-22 09:23:01

本帖最后由 xiaopan3322 于 2011-04-17 15:45 编辑

去看下这篇文章:
http://www.ibm.com/developerworks/cn/linux/l-cn-nohup/index.html

做个ˇ局外人 2022-10-22 09:23:01

让进程在后台可靠运行的几种方法
http://bbs.chinaunix.net/thread-1118626-1-1.html

公布 2022-10-22 09:23:01

回复 1# greenandtree

   

34.6.1 Handling of SIGHUP by the Shell

Some job-control shells also send SIGHUP to stopped background jobs if the
shell exits normally(e.g., when we explicitly log out or type Control-D in a shell
window). This is done by both bash and the Korn shell (after printing a message
on the first logout attempt).
The nohup(1) command can be used to make a command immune to the
SIGHUP signal—that is, start it with the disposition of SIGHUP set to SIG_IGN. The bash
built-in command disown serves a similar purpose, removing a job from the
shell’s list of jobs, so that the job is not sent SIGHUP when the shell terminates.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文