#!/bin/bash

SKYHOST=`cat /skynet/tools/skyhost`
if [[ "$1" == "get" ]] ; then
    curl -sS -H "$2" "http://$SKYHOST/" | tar zxf -
fi
