Last active
February 19, 2017 18:34
-
-
Save MartinAhrer/3a6aedd2005dc3093d4f594657d63e6f to your computer and use it in GitHub Desktop.
Find all build directories
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 "build" -type d -depth 3 | |
find . -name "node_modules" -type d -depth 3 | |
# -exec <COMMAND> {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment