#!/bin/sh

## User API Key
KEY=YourKeyHere

## The URL to upload to, probably don't change this.
URL=https://imagebin.ca/upload.php

curl \
	-F "key=$KEY" \
	-F "file=@$1" \
	"$URL"
