我正在尝试在 bash 脚本中实现动态进度条,这是我们在安装新软件包时看到的那种。为此,随机任务将调用进度条脚本作为后台任务,并为其提供一些整数值。
第一个脚本使用管道馈送第二个脚本。
#!/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
但在这里,第二个脚本在更新时不会收到值。我做错了什么?
这是行不通的,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
使用第三个脚本,您可以改用进程替换。
我在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]}"
随机任务
#!/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
请注意:
coproc 关键字不是由 POSIX(R( 指定的。
coproc 关键字出现在 Bash 版本 4.0-alpha 中