私は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