Last active
February 5, 2016 19:36
-
-
Save falcondai/6265997 to your computer and use it in GitHub Desktop.
install all fonts files under a directory recursively (for Ubuntu).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo installing fonts at $PWD to ~/.fonts/ | |
find . -name '*.ttf' -exec cp \{\} ~/.fonts/ \; | |
find . -name '*.otf' -exec cp \{\} ~/.fonts/ \; | |
echo finished installing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment