我有3个功能,比如
function WatchDog {
sleep 1
#something
}
function TempControl {
sleep 480
#somthing
}
function GPUcontrol {
sleep 480
#somethimg
}
我正在运行它
WatchDog | TempControl | GPUcontrol
该脚本位于本地文件文件。因此,从逻辑上讲,它应该自动运行。问题是第一个功能运行良好。但第二个和第三个还没有开始。但如果我像这样开始
sudo bash /etc/rc.local
工作正常。问题是什么?如果我将其添加到 init.d 目录中,也会发生同样的事情。
答案1
简单地使用 GNU平行线:
export -f WatchDog && export -f TempControl && export -f GPUcontrol
parallel -j3 ::: WatchDog TempControl GPUcontrol
export -f <funcname>
- 导出要引用的函数parallel
-j N
- 跑到氮并行工作
演示测试用例:
function a () { seq -s' ' 1 10; sleep 10; }
function b () { echo {a..z}; sleep 5; }
function c () { echo {-100..-80}; sleep 10; }
export -f a && export -f b && export -f c
parallel --no-notice -j3 ::: c b a
a b c d e f g h i j k l m n o p q r s t u v w x y z
-100 -99 -98 -97 -96 -95 -94 -93 -92 -91 -90 -89 -88 -87 -86 -85 -84 -83 -82 -81 -80
1 2 3 4 5 6 7 8 9 10
答案2
管道将一个命令的输出发送到下一个命令。您正在寻找&
(& 符号)。这会分叉进程并在后台运行它们。所以如果你跑:
WatchDog & TempControl & GPUcontrol
它应该同时运行所有三个。
另外,当您运行时,sudo bash /etc/rc.local
我相信是串行运行它们而不是并行运行它们(它等待每个命令完成后再开始下一个命令)。那会是这样的:
WatchDog ; TempControl ; GPUcontrol
命令分隔符
;分号 -
command1 ; command2
无论是否成功,都会在完成command2
后执行command1
&与符号 -
command1 & command2
这将command1
在子 shell 中执行并command2
同时执行。
||或逻辑运算符 -
command1 || command2
这样就会执行command1
然后执行command2
仅有的如果command1
失败
&&AND 逻辑运算符 -
command1 && command2
这样就会执行command1
然后执行command2
仅有的如果command1
成功了。