Skip to content

Instantly share code, notes, and snippets.

@Uko
Forked from tinchodias/imageget
Last active December 12, 2015 07:38

Revisions

  1. Uko revised this gist Feb 8, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion imageget
    Original file line number Diff line number Diff line change
    @@ -3,5 +3,5 @@
    # 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
    unzip -qo image.zip -d pharo2
    rm -rf image.zip
  2. @tinchodias tinchodias created this gist Feb 8, 2013.
    7 changes: 7 additions & 0 deletions imageget
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    #!/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