我试图在bash脚本中实现动态进度条,这是我们在安装新软件包时看到的那种。为此, randomtask 会将 progressbar 脚本称为后台任务,并为其提供一些整数值。
第一个脚本使用管道来提供第二个脚本。
#!/bin/bash
# randomtask
pbar_x=0 # percentage of progress
pbar_xmax=100
while [[ $pbar_x != $pbar_xmax ]]; do
echo "$pbar_x"
sleep 1
done | ./progressbar &
# do things
(( pbar_x++ ))
# when task is done
(( pbar_x = pbar_xmax ))
因此,第二个脚本需要不断接收整数,然后打印它。
#!/bin/bash
# progressbar
while [ 1 ]; do
read x
echo "progress: $x%"
done
但是在这里,第二个脚本在更新时没有收到值。我做错了什么?
答案 0 :(得分:0)
这不起作用,while
循环在子进程中运行,主程序中的更改不会以任何方式影响它。
有几种IPC机制,这里我使用命名管道(FIFO):
pbar_x=0 # percentage of progress
pbar_xmax=100
pipename="mypipe"
# Create the pipe
mkfifo "$pipename"
# progressbar will block waiting on input
./progressbar < "$pipename" &
while (( pbar_x != pbar_xmax )); do
#do things
(( pbar_x++ ))
echo "$pbar_x"
sleep 1
# when task is done
#(( pbar_x = pbar_xmax ))
done > "$pipename"
rm "$pipename"
我还修改了progressbar
:
# This exits the loop when the pipe is closed
while read x
do
echo "progress: $x%"
done
使用第三个脚本,您可以使用进程替换。
答案 1 :(得分:0)
我在使用WSL,这意味着我不能使用mkfifo。 coproc似乎完全满足了我的需求,所以我搜索并最终发现了这个: coproc usage with exemples [bash-hackers wiki]
我们使用coproc
启动流程并将其输出重定向到 stdout :
{ coproc PBAR { ./progressbar; } >&3; } 3>&1
然后我们可以通过文件描述符 ${PBAR[0]}
(输出)和${PBAR[1]}
(输入)访问和输出
echo "$pbar_x" >&"${PBAR[1]}"
<强> randomtask 强>
#!/bin/bash
pbar_x=0 # percentage of progress
pbar_xmax=100
{ coproc PBAR { ./progressbar; } >&3; } 3>&1
while (( pbar_x <= 10)); do
echo $(( pbar_x++ )) >&"${PBAR[1]}"
sleep 1
done
# do things
echo $(( pbar_x++ )) >&"${PBAR[1]}"
# when task is done
echo $(( pbar_x = pbar_xmax )) >&"${PBAR[1]}"
<强>进度强>
#!/bin/bash
while read x; do
echo "progress: $x%"
done
请注意:
POSIX(R)未指定coproc关键字。
coproc关键字出现在Bash版本4.0-alpha
中