両方のファイルを比較して値より大きいことを確認します。

両方のファイルを比較して値より大きいことを確認します。

30分ごとにディスク使用量について警告するように求められます。問題は、同じ警告が繰り返し送信されないように、最近の出力で以前の警告を確認する必要があることです。

#!/bin/bash

#export [email protected]
export [email protected];
#df -PH | grep -vE '^Filesystem|none|cdrom'|awk '{ print $5 " " $6 }' | while read output;
df -PH | grep -vE '^Filesystem|none|cdrom|swdepot'|awk '{ print $5 " " $6 }' > diskcheck.log;

#diskcheck is current output whereas disk_alert is previous runned output

if [ -s "$HOME/DBA/monitor/log/disk_alert.log" ]; then
#Getting variables and compare with old
  usep=$(awk '{ if($1 > 60) print $0 }' $HOME/DBA/monitor/diskcheck.log | cut -d'%' -f1)
  usep1=$(awk '{ if($1 > 60) print $0 }' $HOME/DBA/monitor/log/disk_alert.log | cut -d'%' -f1)
  partition=$(cat $HOME/DBA/monitor/diskcheck.log | awk '{ print $2 }' )
else
   cat $HOME/DBA/monitor/diskcheck.log > $HOME/DBA/monitor/log/disk_alert.log
fi
**echo $usep;
echo $usep1;**
if [ "$usep" -ge 60 ]; then
        if [ "$usep" -eq "$usep1" ]; then
                mail=$(awk '{ if("$usep" == "$usep1") print $0 }' $HOME/DBA/monitor/diskcheck.log)
                echo "Running out of space \"$mail ($usep%)\" on $(hostname) as on $(date)" | mail -s "Disk Space Alert: Mount $mail is $usep% Used" $maillist;
        fi
fi

出力(エラー):

66 65 85 66
66 65 85 66
disk_alert.sh: line 19: [: 66
65
85
66: integer expression expected

問題は、(66 65 85 66)を意味する単一の行に値を格納する変数($usepと$usep1)にあると思いますが、

66
65
85
66

その後、次のようになります。

if [ "$usep" -ge 60 ]; then 
       this condition will pass.

ベストアンサー1

この行を研究してみましょう:

usep=$(awk '{ if($1 > 60) print $0 }' $HOME/DBA/monitor/diskcheck.log | cut -d'%' -f1)

この状況には$0価値があります66 65 85 66。したがって、cut -d'%'コマンドは%値に区切り文字を見つけることができず、そのまま返します。

それが必要です:

usep=$(awk '{ if($1 > 60) print $1 }' $HOME/DBA/monitor/diskcheck.log

$1最初のフィールドを指す


この行にも同様に適用されます。

usep1=$(awk '{ if($1 > 60) print $0 }' $HOME/DBA/monitor/log/disk_alert.log | cut -d'%' -f1)

おすすめ記事