Skip to content

Instantly share code, notes, and snippets.

@HokieGeek
Created April 17, 2014 11:53
Show Gist options
  • Save HokieGeek/10977266 to your computer and use it in GitHub Desktop.
Save HokieGeek/10977266 to your computer and use it in GitHub Desktop.
Extremely simple shell script that retrieves the latest cygwin installer and runs it. No longer need this, but wanted to store it somewhere. This seemed like as good a place as any.
#!/bin/sh
cd /tmp
installer=setup-x86_64.exe
wget http://cygwin.com/${installer}
chmod +x ${installer}
exec ./${installer}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment