Skip to content

Instantly share code, notes, and snippets.

@isaqueprofeta
Created December 1, 2021 05:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaqueprofeta/48436d8f1beb2086d8921ed8aead4ed3 to your computer and use it in GitHub Desktop.
Save isaqueprofeta/48436d8f1beb2086d8921ed8aead4ed3 to your computer and use it in GitHub Desktop.
Download and uncompress all ttf nerdfonts
#!/bin/bash
for i in $(curl -sk https://github.com/ryanoasis/nerd-fonts/releases | grep 'releases/download/v2.1.0/' | cut -d'"' -f 2) do
wget https://github.com/$i
done
find . -name "*.zip" -type f -exec unzip {} "*.ttf" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment