Skip to main content
Solving creations with Drupal

Directory search

-type d

File search

-type f

User/owner search

-user root

Putting it all together example

find . -mindepth 7 -maxdepth 9 -name node_modules -type d -path '*/foldername/*/otherfolder/*'

Delete
Say you want to search at a minimum depth of 7 max depth of 9 for folders that are named node_modules are owned by root and have /natarch/ in there path and delete them

find . -mindepth 7 -maxdepth 9 -name node_modules -type d -user root -path '*/natarch/*' -exec rm -rf "{}" \;
Tags