Last active
September 4, 2020 16:27
-
-
Save pirkla/6bf58e75b08ebb32a782c071898b3a4b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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