溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么使用Shell腳本實(shí)現(xiàn)監(jiān)測文件變化

發(fā)布時間:2022-06-22 13:55:30 來源:億速云 閱讀:703 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要講解了“怎么使用Shell腳本實(shí)現(xiàn)監(jiān)測文件變化”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“怎么使用Shell腳本實(shí)現(xiàn)監(jiān)測文件變化”吧!

代碼

完整的shell腳本如下,可以直接使用。本示例中,腳本文件名為fileTracer.sh。

#!/bin/bash
# ------------------------------------------
# Filename    : fileTracer.sh
# Version     : 1.1
# Date        : 2022-5-22 00:52:23
# Author      : 農(nóng)民工老王@CSDN
# Email       : scwja@qq.com
# Website     : https://blog.csdn.net/monarch91
# Description : 用于追蹤文件變化的腳本
# ------------------------------------------

time=$1
sleepNum=$2
filePath=$3
fileName=`basename ${filePath}`
whileNum=$(echo "scale=0;${time}*60/${sleepNum}"|bc)
flag=0
historyDir=./fileHistory
timeStr=""

detection_log() {
  timeStr=$(date "+%H:%M:%S.%N")
  timeStr=${timeStr:0:12}
  echo -e "\033[35m${timeStr}\033[0m \033[36m[DEBUG]\033[0m :$1"
}

existNotice=0
deleteNotice=0
md5StrLast=""
mkdir -p $historyDir
while [ $flag  -lt $whileNum ]; do
  if [ -f "${filePath}"  ]; then
    if [ $existNotice -eq  1 ] || [ $flag -eq 0 ] ; then
      if [ $flag -eq 0 ]; then
        detection_log "文件已存在。"
      else
        detection_log "文件被創(chuàng)建。"
      fi
      md5StrLast=`md5sum ${filePath} | awk '{ print $1 }'`
      cp -fr ${filePath} ${historyDir}/${timeStr}_${fileName}
    else
      md5StrNow=`md5sum ${filePath} | awk '{ print $1 }'` >/dev/null 2>&1
      if [ "lw${md5StrNow}" != "lw" ] && [ "lw${md5StrNow}" != "lw${md5StrLast}" ]; then
         detection_log "文件被修改。"
         cp -fr ${filePath} ${historyDir}/${timeStr}_${fileName}
         md5StrLast=${md5StrNow}
      fi
    fi
    existNotice=0
    deleteNotice=1
  else
    if [ $flag -eq 0 ]; then
        detection_log "文件未創(chuàng)建。"
    elif [ $deleteNotice -eq 1 ]; then
        detection_log "文件被刪除。"
    fi
    deleteNotice=0
    existNotice=1
  fi

  flag=$((flag+1))
  sleep ${sleepNum}
done

使用方法

在腳本所在文件夾運(yùn)行:./fileTracer.sh ${監(jiān)測時長} ${監(jiān)測間隔} ${被監(jiān)測文件的絕對路徑}
其中 監(jiān)測時長 的單位為 分鐘,檢測間隔的單位為 秒,以上兩個參數(shù)均可以為小數(shù)。如:./fileTracer.sh 5 0.5 /root/test/poem.txt ,此指令表示在未來的5分鐘內(nèi),每隔0.5秒監(jiān)測一次 /root/test/poem.txt的文件變化。

怎么使用Shell腳本實(shí)現(xiàn)監(jiān)測文件變化

感謝各位的閱讀,以上就是“怎么使用Shell腳本實(shí)現(xiàn)監(jiān)測文件變化”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對怎么使用Shell腳本實(shí)現(xiàn)監(jiān)測文件變化這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI