我有一个代码,它从我定义为变量的两个文件中“grep”某些字符串,如果找到这些字符串,那么它会使用 .txt 向我发送文件的最后 10 行tail
。我希望输出邮件中的字符串采用绿色格式。这无论如何可能吗?下面是我的代码:
grep "xyz" $File2
if [ $? -eq 0 ]
then
echo "Process finished, Below are the logs : \n `tail $File2` |mailx -s "Logs" [email protected]
else
exit 1
fi