使用BASH显示进度(工作)指标

前端之家收集整理的这篇文章主要介绍了使用BASH显示进度(工作)指标前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用仅限bash的脚本,您如何提供一个bash进度指示器?

所以我可以运行一个命令窗体bash,而该命令正在执行,让用户知道还在发生。

在这个使用SCP的例子中,我正在演示如何获取进程id(pid),然后在该进程运行时执行某些操作。

这将显示一个简单的旋转图标。

/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
原文链接:https://www.f2er.com/bash/388491.html

猜你在找的Bash相关文章