Hello JAMFers, I'm writing a script to have a local variable, and an IF
statement to say "If a 4th parameter/argument was passed to the script,
use that instead." For example: if [[ ! -z "${4}" ]];then
theVariable="${4}" fi However, I suspect that JA...