0
維基百科說,這應該工作:UNIX郵件工具 - 「你必須用-S聲明直接接受者,-c或-b」
echo "Some message" | mail -s "meeting today" [email protected]
但我沒有得到任何郵件,而不是錯誤消息:
$ echo "world" | mail -s "hello, " -c [email protected]
You must specify direct recipients with -s, -c, or -b.
$
什麼是正確的使用方法mail
?