0

私はsciptを実行して、年齢のあるログファイルを検索し、ログ内にテキストの文字列を持っている人を比較しています。アドバイスや助けに感謝します

#!/bin/bash
file= find /AUX/backup/log/ -iname "*.log" -daystart -type f -mtime 1
if cat $file | grep -qw “INF - Status = completed."  
then
  echo "there is OK" 
else
  echo "there is KO" 
fi
4

1 に答える 1

0
#!/bin/bash
file=`find /AUX/backup/log/ -iname "*.log" -daystart -type f -mtime 1`
if grep -qw “INF - Status = completed."  < $file
then
  echo "there is OK" 
else
  echo "there is KO" 
fi
于 2013-01-15T15:58:54.233 に答える