> For the complete documentation index, see [llms.txt](https://richardweiyang-2.gitbook.io/kernel-exploring/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://richardweiyang-2.gitbook.io/kernel-exploring/handy_tools/02-check_file_change.md).

# 检查文件变化

有时候我们该了代码，比如清理后，代码的大小会发生变化。这时想要展示这部分变化可以用bloat-o-meter。

```
./scripts/bloat-o-meter file1.o file2.o
```

通过这个，可以看到不同symbole在代码变化前后有没有区别，区别是多少。
