Linux系统下通过bash shell脚本实现倒计时的方法
August 30, 2017
本文主要讲述如何在linux系统下通过bash shell 脚本来实现在屏幕上输出倒计时的方法。
先来看看实现后的脚本,如下:
#!/bin/bash # script name: ctimer.sh # Author: osetc.com # -------------------------------------------------------- row=2 col=2 countdown() { msg="starting..." clear tput cup $row $col echo -n "$msg" l=${#msg} l=$(( l+$col )) for i in {30..1} do tput cup $row $l echo -n "$i" sleep 1 done } countdown
首先我们定义了一个名为countdown的shell 函数,在函数里定义了一个msg变量用于在屏幕上显示倒计时信息,clear 命令用于清除屏幕上的历史输出信息,tput cut 命令用于设置屏幕输出信息的位置,最后通过for循环来实现倒计时,并更新输出信息的位置。
执行上面的脚本
$bash ctimer.sh Starting...30