shell光标

 #!/bin/bash
echo -n Count:
tput sc #清空屏幕
tput cup 2 10
count=10;
while true;
do
    if [ $count -lt 110 ];
    then
        count=$(($count+11));
        sleep 0.5;
        tput rc #恢复光标最后保存的位置
        #tput cup 2 10
        tput ed #清空光标位置到设备尾部的数据
        echo -n $count;
    else 
        echo 
        break;
    fi  
done

这样就会在同一个位置一直打印增长数字

上一篇:联智通达国产化主板龙芯CUP发展历程


下一篇:大数据平台-修改主机名及ssh免密码登录