Skip to content

Instantly share code, notes, and snippets.

@Git-I985
Last active April 18, 2025 19:03
Show Gist options
  • Select an option

  • Save Git-I985/70acf283e23408d29841d12161a08bae to your computer and use it in GitHub Desktop.

Select an option

Save Git-I985/70acf283e23408d29841d12161a08bae to your computer and use it in GitHub Desktop.
Find docker files
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