如何从脚本以非阻塞方式执行程序

发布于 2024-11-19 18:44:07 字数 283 浏览 0 评论 0原文

我有一系列程序文件,a.out,b.out,c.out

我想在每个程序之间有一定的延迟后依次执行它们。喜欢
./a.out -输入参数
----等待50秒----
./b.out -输入参数
-----等待100秒----
./c.out

我想在 a.out 开始执行后 50 秒执行 b.out,但以非阻塞方式,即我不想在 a.out 完成执行后等待 50 秒。

任何人都可以建议在Linux中执行此操作的方法,因为我将其放入一个脚本中,该脚本将为我自动执行任务

I have series of program files, a.out, b.out, c.out

I want to execute them one after the other after certain delay between each program. like
./a.out -input parameters
----wait for 50 sec----
./b.out -input parameters
-----wait for 100 sec----
./c.out

I want to execute b.out 50 seconds after a.out has started execution but in a non-blocking way i.e. I don't want to wait for 50sec after a.out has finished execution.

Can anyone suggest ways of doing this in linux as I'm putting this into a script that will automate tasks for me

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

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

发布评论

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

评论(3

内心旳酸楚 2024-11-26 18:44:07

您想要后台进程:

./a.out -parameters & 
sleep 50 
./b.out -parameters & 
sleep 100 
./c.out &

后台进程运行时不会阻塞您的终端;您可以使用jobs工具以有限的方式控制它们。

You want background processes:

./a.out -parameters & 
sleep 50 
./b.out -parameters & 
sleep 100 
./c.out &

Background processes run without blocking your terminal; you can control them in a limited way with the jobs facility.

贵在坚持 2024-11-26 18:44:07

要在后台运行它,您可以使用a.out &

对于超时,请考虑在 bash 中使命令超时,避免不必要的延迟

To run it in background, you can use a.out &.

For timeout, consider Timeout a command in bash without unnecessary delay .

夜灵血窟げ 2024-11-26 18:44:07

您可以使用 Bash 脚本和 sleep 程序:

#!/bin/bash
./a.out -input parameters
sleep 50
./b.out -input parameters
sleep 100
./c.out

You could use a Bash script and the sleep program:

#!/bin/bash
./a.out -input parameters
sleep 50
./b.out -input parameters
sleep 100
./c.out
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文