在邮件正文中显示文件的内容

在邮件正文中显示文件的内容

我正在编写一个脚本,它在邮件正文中显示文件的内容。但我在执行时遇到错误。

RECIP="[email protected]"
lines=`wc -l $HOME/totals`
if [ $lines == 6 ];then
mailx -s "Morning Totals" $RECIP < $HOME/totals

错误是0403-057 Syntax error at line 3 : 'then' is not matched

我的脚本中有什么错误。

答案1

if没有以以下方式关闭fi

if [ $lines == 6 ];then
  mailx -s "Morning Totals" $RECIP < $HOME/totals
fi

相关内容