Last active
April 18, 2025 19:03
-
-
Save Git-I985/70acf283e23408d29841d12161a08bae to your computer and use it in GitHub Desktop.
Find docker 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
| sudo find -E . -type f \ | |
| -name "*docker*" \ | |
| -not -regex ".*node_modules.*" \ | |
| -not -regex ".*\/\.[^/]+\/.*" \ | |
| -not -regex ".*\/Library\/.*" \ | |
| -not -regex ".*\/Applications\/.*" \ | |
| -not -regex ".*\/wp-content\/plugins\/.*" \ | |
| 2> /dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment