Skip to content

Instantly share code, notes, and snippets.

@kyrias
Created January 30, 2014 22:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyrias/8721464 to your computer and use it in GitHub Desktop.
Save kyrias/8721464 to your computer and use it in GitHub Desktop.
Upload a file to pomf.se
#!/usr/bin/env bash
upload=$(curl -sf -F "files[]=@\"$1\"" http://pomf.se/upload.php)
geturl=$(jshon -e files -e 0 -e url -u <<< $upload)
printf "%s/%s\n" "http://a.pomf.se" "$geturl"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment