Skip to content

Instantly share code, notes, and snippets.

@pirkla
Last active September 4, 2020 16:27
Show Gist options
  • Save pirkla/6bf58e75b08ebb32a782c071898b3a4b to your computer and use it in GitHub Desktop.
Save pirkla/6bf58e75b08ebb32a782c071898b3a4b to your computer and use it in GitHub Desktop.
#!/bin/sh
# Set the url and credentials
jssURL="https://yoururl.jamfcloud.com"
jssUser="username"
jssPass="password"
csvPath="/path/to/some.csv"
endpoint="someendpoint"
IFS=', ' read -r -a allIDs < "$csvPath"
echo ${allIDs[@]}
for curID in ${allIDs[@]};
do
curl -H "Content-Type: text/xml" -ku $jssUser:$jssPass "$jssURL/JSSResource/$endpoint/id/$curID" -X GET
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment