linux – 显示运行bash脚本的每秒运行时间

前端之家收集整理的这篇文章主要介绍了linux – 显示运行bash脚本的每秒运行时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在Linux Mint中运行一个shell脚本,调用一些进程只需几分钟.
对于每个进程,我想回显这样的消息:

echo "Cleaning temporary files... X seconds."
myprocess

其中X是当前经过的时间,我希望它每秒更改一次,但不打印新行.

有没有一个好方法呢?我只找到了最终打印总时间的方法,但没有找到运行流程时经过的时间.

最佳答案
在脚本开头使用它,这将创建一个在后台运行并继续更新状态的子进程.

file=$(mktemp)
progress() {
  pc=0;
  while [ -e $file ]
    do
      echo -ne "$pc sec\033[0K\r"
      sleep 1
      ((pc++))
    done
}
progress &
#Do all the necessary staff

#now when everything is done
rm -f $file

猜你在找的Linux相关文章