Guest User

Untitled

a guest
Mar 20th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. # Recursively find all files of the same type in current directory
  2. find . -name "*.bak" -type f
  3.  
  4. # Recursively find and delete all files of the same type in current directory
  5. find . -name "*.bak" -type f -delete
Add Comment
Please, Sign In to add comment