DOWNLOADS
root@oco:~$ curl -s -k -O {targetSite:port}
* the -O writes output to file with the same name as the remote file
* the -s suppresses writing statuses or unneeded info in the output
* the -k is used to skip certificate checks for invalid or outdated SSL certificates
root@oco:~$ curl {targetSite:port\fileName} -o {localDestination}
* the -o specifies the output filenameLast updated