Skip to content

Instantly share code, notes, and snippets.

@giuliocorradini
Created October 26, 2023 15:56
Show Gist options
  • Select an option

  • Save giuliocorradini/0168a6c822836c3dfe6917dffae0c528 to your computer and use it in GitHub Desktop.

Select an option

Save giuliocorradini/0168a6c822836c3dfe6917dffae0c528 to your computer and use it in GitHub Desktop.
Install multiple fonts in subdirectories on macOS
#!/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