使用bash shell删除电子邮件?

时间:2016-08-16 04:15:02

标签: bash shell

我有一堆无用的电子邮件,我想摆脱它。它们属于GB范围,所以当手动加载收件箱时,Horde邮件就吓坏了。因此,我试图通过以下shell脚本执行此操作:

#!/bin/bash    
find /home/abc/mail/new/ -type f -print | xargs rm
find /home/xyz/mail/new/ -type f -print | xargs rm
find /home/qwe/mail/new/ -type f -print | xargs rm

单独地,find /home/abc/mail/new/ -type f -print | xargs rm工作正常。但是,在bash脚本中运行它们似乎没有做任何事情。知道我做错了吗?

0 个答案:

没有答案