Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. find $PWD -maxdepth 5 -mtime +80 | xargs -I{} rm -Rvf {}
  2.  
  3. find $PWD -maxdepth 5 -mtime +80 -type d | xargs -I{} rm -Rvf {}
  4.  
  5. find $PWD -maxdepth 5 -mtime +80 -exec rm -Rvf {} ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement