Skip to content

Commit

Permalink
Update rm.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove authored Jul 29, 2021
1 parent ac63158 commit e12e921
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions command/rm.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ Remove example ?y(删除文件example)

应注意,这样做是非常危险的!

**rm 命令删除当前目录下的 package-lock.json 文件**

```shell
find . -name "package-lock.json" -exec rm -rf {} \;
```

**rm 命令删除当前目录下的 node_modules 目录**

Expand Down

0 comments on commit e12e921

Please sign in to comment.