Advertisement
PalmaSolutions

Spam-Trash Removal

Jun 6th, 2018
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.21 KB | None | 0 0
  1. # For .Trash
  2.  
  3. for i in $(find /home/*/mail -type d -name ".Trash")
  4.     do
  5.     du -sh $i && rm -rf $i/*
  6. done
  7.  
  8. # For .Spam
  9.  
  10. for i in $(find /home/*/mail -type d -name ".Spam")
  11.     do
  12.     du -sh $i && rm -rf $i/*
  13. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement