install_Fonts.sh

v1.0 = First Production Version
This commit is contained in:
Zack T
2017-02-14 14:02:30 -07:00
parent 765e6e1812
commit db7acf7bf4

20
Software/install_Fonts.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
###################################################################################################
# Script Name: install_Fonts.sh
# By: Zack Thompson / Created: 8/13/2015
# Version: 1.0 / Updated: 8/13/2015 / By: ZT
# ChangeLog:
# v1.0 = First Production Version
#
# Description: This script copies all the fonts to the System Fonts folder.
#
###################################################################################################
# Copy the all font files to the System Fonts folder.
cp -r /Library/IT_Staging/ /Library/Fonts/
# Delete all font files.
rm /Library/IT_Staging/*
exit 0