2013年5月6日 星期一

Shell等待功能

Shell等待功能



Shell等待功能,範例如下:


sleep_sec.sh









#!/bin/bash


#Filename: sleep_sec.sh


Sec="$1"


echo -n count:


tput sc


 


count=0;


while true;


do


  if [ $count -lt $Sec ]


  then let count++;


       sleep 1;


       tput rc


       tput ed


       echo -n $count;


  else exit 0;


  fi


done



 


使用方法: ./ sleep_sec.sh 10


參考出處:Linux Shell 腳本攻略 P 21


沒有留言:

張貼留言