以下是我拥有的一些代码的简化版本:
#!/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
在其第一行输出存储到变量后将其置于前台,以便用户可以通过调用此脚本与它进行交互。
但是,似乎 usingfg %1
在脚本的上下文中不起作用,并且我不能fg
与 PID 一起使用。有没有办法我可以做到这一点?
(另外,是否有更优雅的方式来捕获第一行输出,而不写入临时文件?)