Skip to content

Commit e31c880

Browse files
authored
Update rm.md
1 parent 41fc4f5 commit e31c880

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

command/rm.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ find . -name "package-lock.json" -exec rm -rf {} \;
6060
find ./docs -name "*.html" -exec rm -rf {} \;
6161
```
6262

63+
**删除当前项目下 *.html 结尾的文件**
64+
65+
```shell
66+
rm -rf *.html
67+
```
68+
6369
**删除当前目录下的 node_modules 目录**
6470

6571
```shell

0 commit comments

Comments
 (0)