#/bin/bash #---------------------------------------------------- # Version: 0.1.1 # Author: Florian "Bluewind" Pritz # # Copyright (C) 2008-2009 Florian Pritz # # Licensed under GNU General Public License v3 # (see COPYING for full license text) # #---------------------------------------------------- # Upload image to imagebanana and output url #---------------------------------------------------- curl -F img="@$1" -F "send=Hochladen" -F 'resize=320x240' -H "Expect: " www.imagebanana.com -L | ack -o -n '(http.*?\/view\/.*?\..{3})' | tail -n 1