mirror of
https://github.com/MLBZ521/MacAdmin.git
synced 2026-02-03 14:03:26 +00:00
20 lines
621 B
Bash
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 |