How to Install Synergist for macOS using JumpCloud Commands

This is one that only a few people that use Synergist.co.uk will need. But a couple of my clients do so i wrote a script to roll out the latest version.

install Synergist for macOS using JumpCloud Commands

# Script to download, Silent Install and then clean up once installed Synergist
# Writen by twitter.com/richhickson
# www.RichardHickson.com

#Make temp folder for downloads.
mkdir "/tmp/Synergist/";
cd "/tmp/Synergist/";

#Download DockUtils.
curl -L -o /tmp/Synergist/4D17.3.zip "https://www.synergist.co.uk/syndownloads/MacOS_17/4D%2017.3.zip"

#Unzip
unzip 4D17.3.zip

#Move File
mv 4D.app /Applications

#tidy up
rm -rf /tmp/Synergist

Leave a Comment