linux一条命令发邮件

linux发邮件脚本

#!/bin/bash
mail -s "Qiao mei zi, I've done, just one command" -c [email protected],[email protected] [email protected] < test.txt


带附件的发邮件命令

mutt -s "Haha, well done" -c [email protected],[email protected] [email protected] -a vim.png < txt    



你可能感兴趣的:(linux,command,脚本)