gpt4 book ai didi

bash - 在后台从 Bash 脚本启动进程,然后将其置于前台

转载 作者:行者123 更新时间:2023-12-03 16:51:05 28 4
gpt4 key购买 nike

以下是我拥有的一些代码的简化版本:

#!/bin/bash

myfile=file.txt
interactive_command > $myfile &
pid=$!

# Use tail to wait for the file to be populated
while read -r line; do
first_output_line=$line
break # we only need the first line
done < <(tail -f $file)
rm $file

# do stuff with $first_output_line and $pid
# ...
# bring `interactive_command` to foreground?

我要带 interactive_command在其第一行输出已存储到变量后到前台,以便用户可以通过调用此脚本与它进行交互。

但是,似乎使用 fg %1在脚本上下文中不起作用,我不能使用 fg与PID。有没有办法做到这一点?

(另外,是否有更优雅的方式来捕获第一行输出,而不写入临时文件?)

最佳答案

作业控制使用 fgbg仅在交互式 shell 上可用(即在终端中键入命令时)。通常 shell 脚本在非交互式 shell 中运行(与别名默认情况下在 shell 脚本中不起作用的原因相同)

由于您已经将 PID 存储在变量中,因此将进程置于前台与等待它相同(请参阅 Job Control Builtins )。例如你可以做

wait "$pid"

此外,您拥有的是 coproc bash built-in 的基本版本它允许您获取从后台命令捕获的标准输出消息。它公开存储在一个数组中的两个文件描述符,使用它们可以从 stdout 读取输出或将输入馈送到其 stdin
coproc fdPair interactive_command 

语法通常是 coproc <array-name> <cmd-to-bckgd> .该数组由内置文件描述符 id 填充。如果未明确使用变量,则将其填充在 COPROC 下多变的。所以你的要求可以写成
coproc fdPair interactive_command 
IFS= read -r -u "${fdPair[0]}" firstLine
printf '%s\n' "$firstLine"

关于bash - 在后台从 Bash 脚本启动进程,然后将其置于前台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56128713/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com