blob: 361bcfd0f4c55e9f92bb86fa402fd1061e80a04f (
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
|