add the old snippet md files

This commit is contained in:
Travis Shears 2025-06-05 16:20:57 +02:00
parent fc0dd204c7
commit bcf8313a4b
110 changed files with 3048 additions and 0 deletions

View file

@ -0,0 +1,20 @@
---
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
```