Skip to content

Instantly share code, notes, and snippets.

@Shadey
Created December 14, 2014 09:28
Show Gist options
  • Save Shadey/5dcb894457839724062b to your computer and use it in GitHub Desktop.
Save Shadey/5dcb894457839724062b to your computer and use it in GitHub Desktop.
Nyazo.jp upload
#/usr/bin/sh
#Requires Imagemagick xclip curl
upload(){
link=`curl -s http://nyazo.ru/upload.php -F "id=''" -F "imagedata=@$1"`
echo $link
echo $link | xclip
}
filename="tempychicken.png"
if [ -z "$1" ]
then
import $filename
upload $filename
rm $filename
else
upload $1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment