Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过电子邮件在 shell 脚本上发送一个 zip 文件。我知道我需要使用以下命令:
cat file.txt | mail -s "This is subject" [email]name@address.com[/email]
我总是收到这个错误:
line 13: mail: command not found
有谁知道我可以在哪里以及如何安装邮件命令?
我正在使用 Cygwin 来测试我的 shell 脚本。
如果你在ubuntu,你可以使用apt
sudo apt-get install mailutils postfix
安装“nail”或“mailx”包。