Download XCode without logging in to Apple...
How can I download the XCode installer withought logging in to Apple?
2.4 MBP, Mac OS X (10.5)
2.4 MBP, Mac OS X (10.5)

#!/bin/zsh -f
function startvnc () {
print "Are you sure you want to start this service? [y/n] "
sudo ipfw flush 2> /dev/null > /dev/null
setopt NO_notify
autoload -U restore_settings
restore_settings &
print "Starting VNC server. Cancel or quit before logout with Control-C."
/Applications/Utilities/Vine Server.app/Contents/MacOS/OSXvnc-server "$@" 2> /dev/null > /dev/null
}
startvnc
function restore_settings () {
setopt NO_notify
sleep 60
sudo ipfw /path/to/my/firewall.conf > /dev/null
}
Download XCode without logging in to Apple...