Files
MacAdmin/Software/install_Fonts.sh
Zack T db7acf7bf4 install_Fonts.sh
v1.0 = First Production Version
2017-08-15 11:01:57 -07:00

20 lines
621 B
Bash

#!/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