Skip to content

Instantly share code, notes, and snippets.

View mudassirgithub's full-sized avatar
👨‍💻
Coding...

Mudassir Ahmed mudassirgithub

👨‍💻
Coding...
View GitHub Profile
@mudassirgithub
mudassirgithub / cli_command.md
Created July 20, 2025 22:54
Find (node_modules, build, dist, .turbo, .cache) xargs and remove files and directories from them with grep
find . | grep -E "(/node_modules$|/build$|/dist$|\.turbo$|/\.cache$)" | xargs rm -rf

above command will forcefully and recursively remove following files and directories

  • node_modules
  • build
  • dist
  • .turbo
  • .cache
@mudassirgithub
mudassirgithub / cli_command.md
Last active December 20, 2023 14:07
Find xargs and remove files and directories with grep
find . | grep -E "(/node_modules$|/build$|/dist$|\.turbo$)" | xargs rm -rf

above command will forcefully and recursively remove following files and directories

  • node_modules
  • build
  • dist
  • .turbo