我正在attach one file
尝试echo messages
使用mailx and uuencode
. 我有以下命令,已将它们添加在一起,uuencode 无法正常工作,但我在电子邮件中正确收到了回显消息。
我怎样才能让 uuencode 在这里工作?我想在将 uuencode 与 mailx 结合时,我在这里做错了什么?
(uuencode /tmp/chart.html percentage_graph.html) | mailx -s "LIP Data Quality Report for $DATE_YEST_FORMAT1" -r rj@host.com rj@host.com <<EOF
Data Successfully loaded into LIP_DATA_QUALITY table
Total Items Purchased: `echo $QUERY1 | awk '{print $1}'`
Total Items MissingorMismatch: `echo $QUERY1 | awk '{print $2}'`
Error Percentage: $QUERY2
EOF
但是出于测试目的,如果我发出以下命令以查看我是否在附件中获得任何 html 文件,那么我会正确收到一封带有附件的电子邮件。
(uuencode /tmp/chart.html percentage_graph.html) | mailx -s "LIP Data Quality Report for $DATE_YEST_FORMAT1" -r rj@host.com rj@host.com
那么当我将它们组合在一起时,我的第一个命令有什么问题?