upload image to imm.io imagehost

Miscellaneous tools
Post Reply
Message
Author
User avatar
stu91
Posts: 145
Joined: Mon 06 Aug 2012, 15:11
Location: England. Dpup. Dell Inspiron 1501

upload image to imm.io imagehost

#1 Post by stu91 »

here is a super simple script to upload an image to http://www.imm.io image host - just past into a bash script and run in terminal - Enter image path and it will upload and output a web link for sharing.
Image

Code: Select all

#!/bin/sh
 
 read -p "Enter Image: " IMAGE
 curl -s -F "image=@$IMAGE" imm.io/store | tr "," "\n" | awk -F"\"" '/uri/{print $4}'

Post Reply