Skip to content

Instantly share code, notes, and snippets.

@whidy
Created January 3, 2024 06:49
Show Gist options
  • Save whidy/379889645f24cb4156e747faf372ab54 to your computer and use it in GitHub Desktop.
Save whidy/379889645f24cb4156e747faf372ab54 to your computer and use it in GitHub Desktop.
删除macos下的某个目录下所有子目录内的node_modules
find ~/webs -name "node_modules" -type d -prune -exec rm -rf '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment