Skip to content

Instantly share code, notes, and snippets.

@ajorpheus
Forked from anonymous/save-blobs.sh
Last active February 12, 2018 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajorpheus/da92f90a07997780c79e388256219d2c to your computer and use it in GitHub Desktop.
Save ajorpheus/da92f90a07997780c79e388256219d2c to your computer and use it in GitHub Desktop.
save-blobs.sh
#!/bin/sh
MODEL="iPhone1,1"
ECID="0123456789"
declare -a VERSIONS=("8.4.1" "8.4" "8.3" "8.2" "8.1.3" "8.1.2" "8.1.1" "8.1" "8.0.2" "8.0.1" "8.0" "11.2.2" "11.2.1" "11.2" "11.1.2" "11.1.1" "11.1" "11.0.3" "11.0.2" "11.0.1" "11.0" "10.3.3" "10.3.2" "10.3.1" "10.3" "10.2.1" "10.2" "10.1.1" "10.1" "10.0.3" "10.0.2" "10.0.1"
)
for VERSION in "${VERSIONS[@]}"
do
./tsschecker_macos -d $MODEL -e $ECID -s -i $VERSION
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment