亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

linux中shell腳本實現(xiàn)下載完關(guān)機

 更新時間:2015年03月29日 14:14:23   投稿:hebedich  
本文給大家分享的是個人在實際應(yīng)用中制作的一個小程序,十分的實用,推薦給大家,有需要的小伙伴可以參考下。

用mint 有一段時間了,下載基本用firefox,有時下載幾個G的游戲。可是firefox沒有找到下載完關(guān)機的選擇。處于這個原因,寫了這個。

download_shutdown.sh

#!/bin/bash
# Created By:   Demo <demo@demo.com>
# Created Time:  2015-01-30 12:36:44
# Modified Time:  2015-01-30 12:54:21
dir=$1
while [ "1" ]
do
  if [ ! -d "$1" -a -x "$1" ];then
    echo 'please specify a directory'
  fi
   
  ret=`find $1 -ctime -4 |sort | wc | awk -F ' ' '{print $1}'`
  if [ "$ret" -ge "2" ];then
    #echo 'h'
    sleep 240 
  else
    init 0
  fi
done

以上所述就是本文的全部內(nèi)容了,希望大家能夠喜歡。

相關(guān)文章

最新評論