blob: b1ee72b3656863581699e24ea9013e48190cb5e3 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
#git pull --recurse
#curl -LO https://raw.githubusercontent.com/google/fonts/main/tags/all/families.csv
curl https://fonts.google.com/metadata/stats | \
# First line is junk.
sed -n -e '2,$p' > popularity.json
|