bir dosyanın içeriğine göre farklılık göstermek


0

iki dosya üzerinde bir fark yaratmaya çalışıyorum ve içerikleri karşılaştırıyorum ve eğer farklılarsa bir e-posta gönder. Benim senaryom aşağıda, nedense çalışamayacağım. Herhangi bir öneriniz açıktır.

#!/bin/bash
# This script alert.sh runs every hour in cron
# Created march 15, 2018 Author Dave Taylor

# Variables
frm="Datafile-Monitor@mycompany.com"

# For testing email and script
recipients="dave@mycompany.com"


# This is the Data file checked every Midnight for website results done by curdata.sh script. Results go to the curfile.fil
current=/scripts/results/curfile.fil

# This is the NEW data output file where website is checked every hour done by newdata.sh script. Results go to the datafile.fil
new=/scripts/results/datafile.fil

dpd=`cat /scripts/results/datafile.fil`
dte=`/bin/date`


# check if the contents of the file has changed since midnight.

    if diff $current $new &>/dev/null

        then

# Log it
    echo "$dte" >> /var/log/datapod
    echo "Data file is $dpd" >>  /var/log/datafile

    else
# Create the message

    echo "Current STL Datafile has changed TO:$dpd" > /scripts/results/mesg

# send the email
    mail -s "Alert Data File has changed" -r "$frm" $recipients < /scripts/results/mesg

sleep 3

#Now we update the current data file with the most up to date info.
cat /scripts/results/datafile.fil > /scripts/results/curfile.fil
fi

3
Nasıl başarısız oluyor? Hata ayıklamak için ne yaptın?
tripleee

İhtiyacın var ! girişini iptal etmek if Bir arıza durumunu kontrol ettiğinizden beri ifade.
dsstorefile1

kullanım set -x yapmak bash izleyen her komutu yazdır. Bu şekilde ne yapıldığını bileceksiniz (not: normal davranışa dönme komutu set +x, buna ihtiyacın olursa diye).
Kamil Maciorowski

Yanıtlar:


-1

Bunu dene:

#!/bin/bash
frm="Datafile-Monitor@mycompany.com"
recipients="dave@mycompany.com"
current=/scripts/results/curfile.fil
new=/scripts/results/datafile.fil
log=/var/log/datafile
msgfile=/scripts/results/mesg
dte=`/bin/date`
diff $current $new &>/dev/null
if [ $? -eq 0 ];  then
    echo "${dte}: Data file is: $new " >>  $log
else
    echo "Current STL Datafile has changed TO: " > $msgfile
    cat $new >> $msgfile
    mail -s "Alert! Data File has changed" -r "$frm" $recipients < $msgfile
    sleep 3
    cat $new > $current
    echo "${dte}: Data file has changed. Sent mail to $recipients" >>  $log
fi

1
Sözdizimi if diff $current $new çok tercih edilir diff; if [ $? -eq 0 ] yani bu gerçekten bir gelişme değil. Genel olarak, alıntılanmamış dosya adları da oldukça sinir bozucudur. Ayrıca bakınız shellcheck.net sözdizimi kontrolleri için.
tripleee

2
Bu gibi görünüyor Bunu dene! Cevap. Askerin neden denemesini istediğinizi ve neleri değiştirdiğinizi açıklayın.
Tiago Caldeira
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.