Last active
July 11, 2016 19:00
-
-
Save marcusdb/1515d92de93a3f12958bc38559b44b65 to your computer and use it in GitHub Desktop.
rm lots of files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -name "*.pdf" -print0 | xargs -0 rm | |
| find . -name "*.req" -print0 | xargs -0 -I file mv file ../ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment