Shell等待功能

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

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *