I was able to make it work by changing this line MSG=$( echo "$Desc" )
in the accepted answer to this MSG=$( printf "$Desc" ) Tested in macOS
Monterey and the macOS Ventura Beta
Carriage returns solved my issue with \n not working in macOS 12.5 and
Jamf Helper. We are also on Jamf Pro 10.34.2Edit: Oddly enough I ran
into this issue again with a new script I was working on. To get it to
work I used printf instead of echo in t...