Script to sign a folder of configuration profiles
#!/bin/bash ### Note the hardcoded "JamfSign" certificate name # Source and destination folders SOURCE_FOLDER="~/Desktop/source" DESTINATION_FOLDER="~/Desktop/destination" # Check if the source and destination folders exist if [ ! -d "$SOURCE_FOLDER" ];…