Skip to content

Instantly share code, notes, and snippets.

@phamquyhai
Last active April 26, 2021 03:29
Show Gist options
  • Save phamquyhai/a9494de67368abcc4ec2ac20a240178e to your computer and use it in GitHub Desktop.
Save phamquyhai/a9494de67368abcc4ec2ac20a240178e to your computer and use it in GitHub Desktop.
Find and Delete node_modules in Mac/Win/Linux

#Preview

#MAC/Linux
find . -name "node_modules" -type d -prune | xargs du -chs

#WIN
FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" echo %d"

#Delete

#MAC/Linux
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +

#WIN
FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" rm -rf "%d"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment