如何在bash中显示和刷新多行

前端之家收集整理的这篇文章主要介绍了如何在bash中显示和刷新多行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写安装脚本,并希望在脚本进行过程中显示脚本的状态.

例:

  1. var1="pending"
  2. var2="pending"
  3. var3="pending"
  4.  
  5. print_status () {
  6. echo "Status of Item 1 is: "$var1""
  7. echo "Status of Item 2 is: "$var2""
  8. echo "Status of Item 3 is: "$var3""
  9. }
  10.  
  11. code that does something and then refreshes the
  12. output above as the status of each variable changes.
这段代码应该给你一个想法:
  1. while :; do
  2. echo "$RANDOM"
  3. echo "$RANDOM"
  4. echo "$RANDOM"
  5. sleep 0.2
  6. tput cuu1 # move cursor up by one line
  7. tput el # clear the line
  8. tput cuu1
  9. tput el
  10. tput cuu1
  11. tput el
  12. done

使用man tput获取更多信息.要查看功能列表,请使用man terminfo

猜你在找的Bash相关文章