Hi all, newbie to scripting and Jamf, so please bear with me here.
I would like to create a script that pulls a config file for our VPN client and places it in the users library/application support/application/config folder. I think the script would be as follows:
#!/bin/bash
curl https://website.com/place/file.plist -o ~/Library/Application\\ Support/ApplicationName/Config/file.plist
Does this look like it would work to download to the users Library folder?
Edit: input the -o in the middle of the curl line, forgot to input that there!