> For the complete documentation index, see [llms.txt](https://phper.shujuwajue.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://phper.shujuwajue.com/linux/ming-ling-bi-ji.md).

# 命令笔记

[linux 下查找大于100M的文件](http://www.cnblogs.com/wardensky/p/4922015.html)

```
find . -type f -size +100M
```

```
du -sh [dirname|filename]
   当前目录的大小：
　　du -sh .
　　当前目录下个文件或目录的大小：
　　du -sh *
　　显示前10个占用空间最大的文件或目录：
　　du -s * | sort -nr | head
```
