Skip to content

Instantly share code, notes, and snippets.

@mikecroft
Created November 14, 2023 20:45
Show Gist options
  • Save mikecroft/13a7b11322ecf2f10c41e20e801eff54 to your computer and use it in GitHub Desktop.
Save mikecroft/13a7b11322ecf2f10c41e20e801eff54 to your computer and use it in GitHub Desktop.
Extract downloaded fonts
# Assumes all zip files in current dir are fonts
for filename in *.zip ; do
sudo unzip ${filename} -d /usr/share/fonts/${filename%.*};
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment