我正在做一个 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