Created
October 26, 2023 15:56
-
-
Save giuliocorradini/0168a6c822836c3dfe6917dffae0c528 to your computer and use it in GitHub Desktop.
Install multiple fonts in subdirectories on macOS
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 | |
| # This script helps you to install a font where its variants are stored in different directories. | |
| for file in *; do | |
| if [ -d $file ]; then | |
| echo $file | |
| cd $file | |
| open * | |
| cd ..; | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment