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
find . | grep -E "(/node_modules$|/build$|/dist$|\.turbo$|/\.cache$)" | xargs rm -rf
above command will forcefully and recursively remove following files and directories
find . | grep -E "(/node_modules$|/build$|/dist$|\.turbo$)" | xargs rm -rf
above command will forcefully and recursively remove following files and directories