uninstall.sh 380 B

1234567891011121314151617
  1. #!/bin/bash
  2. clear
  3. echo "Un-Installing all Google Web Fonts onto your Mac"
  4. echo "Downloading font list..."
  5. cd ~/Documents/
  6. curl -L https://raw.githubusercontent.com/qrpike/Web-Font-Load/master/list-of-fonts.txt -o list-of-fonts.txt
  7. while read font; do
  8. rm "/Library/Fonts/$font"
  9. done <list-of-fonts.txt
  10. rm -rf list-of-fonts.txt
  11. echo "All done! All Google Web Fonts removed."