The following script will set the spelling language to ONLY Korean,
disable all of the auto text replacement features (except for "on my
way") and open a TextEdit window. #!/bin/sh
PATH=/bin:/usr/bin:/usr/sbin:/sbin:/usr/local/bin export PATH # Disab...
Below is the updated version of our script for 10.12: #!/bin/sh
PATH=/bin:/sbin:/usr/bin:/usr/local/bin:/usr/sbin export PATH
scriptfn=$(echo "$0" | sed 's/.*///g') # script filename
scriptfnPath=$(dirname "$0") # script file path home_loc=$(cat
/pri...
Below is our script that both works on 10.11 and as the root user. Note
that "$home_loc" and "$user_shortname" are variables that we set with
our in house written "coreDaemon", so for those you are on your own.
This script runs as root instead of the...