如何使用 C shell 在 mutt 命令中附加 csv
How to attach csv in mutt command using C shell
下面是我在 html 正文中尝试的代码,没有附加 csv 文件。工作正常
#!/bin/csh
mutt -e "set content_type=text/html" -s "status report on" rama@abc.com < mail1.html
下面是我尝试附加 csv 文件时尝试的代码。但它无法正常工作并出现如下所示的错误。
#!/bin/csh
mutt -e "set content_type=text/html" -s "status report on" -a "sum.csv" rama@abc.com < mail1.html
Can't stat rama@abc.com: No such file or directory
rama@abc.com: unable to attach file.
请问上面的代码哪里出了问题??
如果您希望收件人位于附件之后,则必须添加 --
作为分隔符。
查看 mutt 的手册页:
-a file [...]
Attach a file to your message using MIME.
When attaching single or multiple files, separating filenames and recipient
addresses with "--" is mandatory, e.g. mutt -a image.jpg -- addr1
or mutt -a img.jpg *.png -- addr1 addr2. The -a option
must be placed at the end of command line options.
下面是我在 html 正文中尝试的代码,没有附加 csv 文件。工作正常
#!/bin/csh
mutt -e "set content_type=text/html" -s "status report on" rama@abc.com < mail1.html
下面是我尝试附加 csv 文件时尝试的代码。但它无法正常工作并出现如下所示的错误。
#!/bin/csh
mutt -e "set content_type=text/html" -s "status report on" -a "sum.csv" rama@abc.com < mail1.html
Can't stat rama@abc.com: No such file or directory
rama@abc.com: unable to attach file.
请问上面的代码哪里出了问题??
如果您希望收件人位于附件之后,则必须添加 --
作为分隔符。
查看 mutt 的手册页:
-a file [...] Attach a file to your message using MIME. When attaching single or multiple files, separating filenames and recipient addresses with "--" is mandatory, e.g. mutt -a image.jpg -- addr1 or mutt -a img.jpg *.png -- addr1 addr2. The -a option must be placed at the end of command line options.