Skip to content

Instantly share code, notes, and snippets.

@tinchodias
Created February 8, 2013 09:41
Show Gist options
  • Save tinchodias/4737729 to your computer and use it in GitHub Desktop.
Save tinchodias/4737729 to your computer and use it in GitHub Desktop.
Script for getting latest Pharo 2.0 image
#!/bin/bash
# DOWNLOAD THE LATEST IMAGE ===================================================
IMAGE_URL="http://pharo.gforge.inria.fr/ci/image/20/latest.zip"
wget --progress=bar:force --output-document=image.zip $IMAGE_URL
unzip -qo image.zip
rm -rf image.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment