Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mupload 226B

1234567891011
  1. #!/bin/bash
  2. if [ ! -f "$1" ] || [ "$2" == "" ]; then
  3. echo "mupload <file> <name>"
  4. exit 1
  5. fi
  6. scp "$1" "martin@serve.mort.coffee:/var/www/mort.coffee/d/public/$2"
  7. URL="http://d.mort.coffee/$2"
  8. echo $URL | xsel -ib
  9. echo $URL