怎么样?在 bash 中实现?

发布于 2024-12-02 02:05:25 字数 128 浏览 0 评论 0原文

&    # disown the functions

众所周知, & 将任务置于后台,最重要的是否认该任务。

但它是如何实现的呢?

&    # disown the functions

As we all know & put a task into background, and most importantly disowns the task.

But how is it achieved?

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

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

发布评论

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

评论(1

你如我软肋 2024-12-09 02:05:25

如果没有 &,shell 会分叉自身,在子进程中调用 execve 来启动任务,并通过 wait等待waitpid 让子进程终止(挂起 shell),除此之外不做任何其他事情。

当启动后台任务时,shell 再次分叉自身,调用 execve 在子进程中启动任务,但不会等待其终止,而是在任务启动后立即返回控制权。

Without a &, the shell forks itself, calls execve in the child process to start the task, and waits via wait or waitpid for the child to terminate (which suspends the shell), not doing anything else than that.

When starting a background task, the shell forks itself again, calls execve to start the task in the child process, but doesn't wait for its termination and rather return the control immediately after the start of the task.

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