Questions tagged «mail-command»

4
什么是“邮件”,以及如何导航?
该程序位于中/usr/bin/mail。执行后,Version 8.1.2 01/15/2001显示。 输入list产生: Commands are: next, alias, print, type, Type, Print, visual, top, touch, preserve, delete, dp, dt, undelete, unset, mail, mbox, pipe, |, more, page, More, Page, unread, Unread, !, copy, chdir, cd, save, source, set, shell, version, group, write, from, file, folder, folders, ?, z, headers, help, …



1
如何列出邮箱中的邮件?
使用该mail命令可以显示我收到的消息,并提示我,但是我无法确定如何列出消息。这是邮件的帮助屏幕: Mail Command Description ------------------------- --------------------------------------------- t [message list] type messages(s). more [message list] read message(s), through the $PAGER n goto and type next message. e [message list] edit message(s) f [message list] give head lines of messages. d [message list] delete message(s). s [message list] <file> append message(s) to …

3
使用'mail'命令删除一系列电子邮件
我的收件箱(旧的cronjob stdout)中有大约1k +邮件。如何批量删除它们? 我在Solaris 8和我只有mail可用的,没有pine或mutt或类似的“UI”为基础的客户端。 内联帮助和手册页仅d #用于删除特定邮件。例如,我尝试过d 1 - 100但没有运气。而且我不想做d1000次。 有什么想法如何清理此收件箱吗?我实际上想清除所有超过x天的邮件。

3
从函数内部执行邮件命令会导致“叉子炸弹”
当我尝试mail从bash脚本中的函数内部执行时,它会创建类似于fork炸弹的内容。为了澄清,这会引起问题: #!/bin/bash mail() { echo "Free of oxens" | mail -s "Do you want to play chicken with the void?" "example@example.org" } mail exit 0 有时您只需要杀死该命令,它就会杀死子进程,但是有时您必须这样做killall -9。 不管邮件是否已发送。该叉炸弹创建两种方式。而且似乎没有为退出代码添加任何检查,例如if ! [ "$?" = 0 ]帮助。 但是以下脚本可以按预期工作,要么输出错误,要么发送邮件。 #!/bin/bash echo "Free of oxens" | mail -s "Do you want to play chicken with …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.