Last active
February 16, 2023 09:30
-
-
Save deneuv34/55a78bc54776c0868d497ad79c7074dc to your computer and use it in GitHub Desktop.
Revisions
-
deneuv34 revised this gist
Feb 3, 2021 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ This command is find and remove all `node_modules` on `./` path ```bash $ find . -name node_modules -type d -print0 | xargs -0 rm -rf -- ``` -
deneuv34 created this gist
Feb 3, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ ```bash $ find . -name node_modules -type d -print0|xargs -0 rm -rf -- ```