compara criação de data + bash

2

No meu script de shell Na necessidade de comparar a criação de data do j2re-1.4.2_10-fcs rpm pkg contra a data de criação de alguns arquivos e verificar se a criação do arquivo é mais recente que a criação do rpm pkg

minha pergunta: se alguém tiver uma ideia inteligente de como comparar arquivos contra a criação de rpm? Para descobrir se a data do arquivo é mais antiga ou mais recente, a criação da data do rpm

      rpm -qi j2re-1.4.2_10-fcs | grep "Install Date"
      Install Date: Mon 20 Sep 2010 02:01:04 PM IST      Build Host: localhost.localdomain




   ls -ltr /etc/hosts
   -rw-r--r--    1 root     root          563 Sep  7 10:28 /etc/hosts
    
por or100 21.09.2010 / 16:19

2 respostas

1

O Unix não armazena datas de criação, mas você pode comparar modificações (ou acessar ou alterar datas).

rpmdate=$(rpm -qi j2re-1.4.2_10-fcs | sed -n '/Install Date/ s/Install Date:\(.*\)Build Host:.*//p')
rpmdate=$(date -d "$d" +%s)
filedate=$(stat --printf=%Y /etc/hosts)
if (( filedate > rpmdate ))
then
    echo "File is newer than RPM"
echo
    echo "File is NOT newer than RPM"
fi
    
por 21.09.2010 / 16:35
0

Isso deve funcionar. Adapte-o às suas necessidades.

#!/bin/bash

rpm_path="$1"
file_path="$2"

file_date_row='ls -l --time-style=+%Y%m%d $file_path'
file_date='echo "$file_date_row" | awk -F" " '{print $6}''

rpm_date_row='rpm -qi $rpm_path | grep "Install Date"'
rpm_year='echo "$rpm_date_row" | cut -d " " -f 6'
rpm_month='echo "$rpm_date_row" | cut -d " " -f 5'
rpm_day='echo "$rpm_date_row" | cut -d " " -f 4'

case $rpm_month in
   Jan)
   rpm_date="$rpm_year""01""$rpm_day"
   ;;
  Feb)
   rpm_date="$rpm_year""02""$rpm_day"
   ;;
   Mar)
   rpm_date="$rpm_year""03""$rpm_day"
   ;;
   Apr)
   rpm_date="$rpm_year""04""$rpm_day"
   ;;
   May)
   rpm_date="$rpm_year""05""$rpm_day"
   ;;
   Jun)
   rpm_date="$rpm_year""06""$rpm_day"
   ;;
   Jul)
   rpm_date="$rpm_year""07""$rpm_day"
   ;;
   Aug)
   rpm_date="$rpm_year""08""$rpm_day"
   ;;
   Sep)
   rpm_date="$rpm_year""09""$rpm_day"
   ;;
   Oct)
   rpm_date="$rpm_year""10""$rpm_day"
   ;;
   Nov)
   rpm_date="$rpm_year""11""$rpm_day"
   ;;
   Dec)
   rpm_date="$rpm_year""12""$rpm_day"
   ;;
esac

if [[ "$rpm_date" > "$file_date" ]]
then
   echo "The RPM is newer than the file"
elif [[ "$rpm_date" < "$file_date" ]]
then
   echo "The file is newer than the RPM"
else
   echo "The file and the RPM have the same date"
fi
    
por 21.09.2010 / 17:30

Tags