Skip to content

Commit

Permalink
新增命令行快捷操作
Browse files Browse the repository at this point in the history
  • Loading branch information
simply-none committed May 11, 2022
1 parent 0e6117d commit 4f3eb12
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions _sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
- [npm](usage-tool/npm操作.md)
- [babel](usage-tool/babel操作.md)
- [webpack](usage-tool/webpack操作.md)
- [命令行快捷操作](usage-tool/命令行快捷操作.md)

- 配置文件
- [vue.config.js](usage-config/vue.config.js.md)
Expand Down
7 changes: 7 additions & 0 deletions usage-tool/命令行快捷操作.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 命令行快捷操作

## 查询文件夹下所有的文件代码行数并排序

```bash
find . -name "*.*" | xargs wc -l | sort -nr
```

0 comments on commit 4f3eb12

Please sign in to comment.