自学内容网 自学内容网

Linux shell实现执行任务进度条动态显示(回旋镖)-3

process_bar.sh

#!/bin/bash
#display boomerang

while :
do
  clear
  for i in {1..20}
  do
  echo -e "\033[2;${i}H*"
  sleep 0.1
  done
  clear
  for i in {20..1}
  do
  echo -e "\033[2;${i}H*"
  sleep 0.1
  done
  clear
done

验证:


原文地址:https://blog.csdn.net/z19861216/article/details/139643594

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!