使用仅限bash的脚本,您如何提供一个bash进度指示器?
所以我可以运行一个命令窗体bash,而该命令正在执行,让用户知道还在发生。
在这个使用SCP的例子中,我正在演示如何获取进程id(pid),然后在该进程运行时执行某些操作。
原文链接:https://www.f2er.com/bash/388491.html这将显示一个简单的旋转图标。
/usr/bin/scp me@website.com:file somewhere 2>/dev/null & pid=$! # Process Id of the prevIoUs running command spin[0]="-" spin[1]="\\" spin[2]="|" spin[3]="/" echo -n "[copying] ${spin[0]}" while [ kill -0 $pid ] do for i in "${spin[@]}" do echo -ne "\b$i" sleep 0.1 done done
威廉·普赛尔的解决方案
/usr/bin/scp me@website.com:file somewhere 2>/dev/null & pid=$! # Process Id of the prevIoUs running command spin='-\|/' i=0 while kill -0 $pid 2>/dev/null do i=$(( (i+1) %4 )) printf "\r${spin:$i:1}" sleep .1 done