-
-
Save Yexiaoxing/5763025 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 | |
# Change this line to the URI path of the xcode DMG file. | |
# XCode 3.2.5 | |
#XCODE_PATH="/ios/ios_sdk_4.2__final/xcode_3.2.5_and_ios_sdk_4.2_final.dmg" | |
# XCode 4 | |
#XCODE_PATH="/Developer_Tools/xcode_4_and_ios_sdk_4.3__final/xcode_4_and_ios_sdk_4.3__final.dmg" | |
echo "Enter your Apple Dev Center username." | |
read -p "> " USERNAME | |
echo "Enter your Apple Dev Center password." | |
read -p "> " PASSWORD | |
curl \ | |
-L -s -k \ | |
--cookie-jar cookies \ | |
-A "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1) Gecko/20090624 Firefox/3.5" \ | |
https://developer.apple.com/devcenter/ios/login.action \ | |
-o login.html | |
ACTION=$(sed -n 's/.*action="\(.*\)".*/\1/p' login.html) | |
WOSID=$(sed -n 's/.*wosid" value="\(.*\)".*/\1/p' login.html) | |
echo "action=${ACTION}" | |
echo "wosid=${WOSID}" | |
curl \ | |
-s -k --cookie-jar cookies --cookie cookies \ | |
-A "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1) Gecko/20090624 Firefox/3.5" \ | |
-e ";auto" "https://daw.apple.com${ACTION}?theAccountName=${USERNAME}&theAccountPW=${PASSWORD}&theAuxValue=&wosid=${WOSID}&1.Continue.x=0&1.Continue.y=0" \ | |
> /dev/null | |
curl \ | |
-L --cookie-jar cookies --cookie cookies \ | |
-A "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1) Gecko/20090624 Firefox/3.5" \ | |
-O https://developer.apple.com/ios/download.action?path=${XCODE_PATH} | |
rm login.html | |
rm cookies |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment