--- title: "file search plus size" date: 2020-07-02T10:09:24+02:00 draft: false snippet_types: ["fd", "du"] --- How big are the fonts in this project? Not sure where they are even. This command finds the files using [fd](https://github.com/sharkdp/fd) then prints file size. ```shell $ fd woff | xargs du -h 20K src/assets/fonts/brandon_text_medium.woff2 20K src/assets/fonts/brandon_text_regular.woff2 20K src/assets/fonts/chronicle_light.woff2 20K src/assets/fonts/chronicle_roman.woff2 4.0K types/woff 4.0K types/woff2 ```