I am trying to download an installation script of a project that is in a Github protected repo.
user
and repo
below are replaced by the correct info.
I have tried curl:
curl -u gabipetrovay -L -o install.sh "https://raw.github.com/user/repo/master/admin/scripts/install.sh"
Curl prompts for the password but as soon as I type the first character it goes further and downloads something (a lot of JS probably from Github)
I also tried wget:
wget --user=gabipetrovay --ask-password "https://raw.github.com/user/repo/master/admin/scripts/install.sh"
With wget I can enter my complete password but then I get a 503 error:
Resolving raw.github.com (raw.github.com)... 199.27.73.133
Connecting to raw.github.com (raw.github.com)|199.27.73.133|:443... connected.
HTTP request sent, awaiting response... 503 Connection timed out
2013-10-14 10:18:45 ERROR 503: Connection timed out.
How can I get the install.sh file? (I am running this from an Ubuntu server 13.04)