Skip to content

Instantly share code, notes, and snippets.

@deneuv34
Last active February 16, 2023 09:30
Show Gist options
  • Select an option

  • Save deneuv34/55a78bc54776c0868d497ad79c7074dc to your computer and use it in GitHub Desktop.

Select an option

Save deneuv34/55a78bc54776c0868d497ad79c7074dc to your computer and use it in GitHub Desktop.

Revisions

  1. deneuv34 revised this gist Feb 3, 2021. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion command.md
    Original 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 --
    $ find . -name node_modules -type d -print0 | xargs -0 rm -rf --
    ```
  2. deneuv34 created this gist Feb 3, 2021.
    3 changes: 3 additions & 0 deletions command.md
    Original 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 --
    ```