aboutsummaryrefslogtreecommitdiff
path: root/imagebin
diff options
context:
space:
mode:
Diffstat (limited to 'imagebin')
-rwxr-xr-ximagebin16
1 files changed, 16 insertions, 0 deletions
diff --git a/imagebin b/imagebin
new file mode 100755
index 0000000..a5de360
--- /dev/null
+++ b/imagebin
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+# pastebin an image. if xsel is installed, copy the URL to the X clipboard.
+# uses this API: https://ibin.co/tools.php
+# no support for using a login + API key, don't need it.
+
+url="$(
+ curl -F file="@${1:-}" https://imagebin.ca/upload.php | \
+ grep ^url: | \
+ cut -d: -f2-
+)"
+
+if [ -n "$url" ]; then
+ echo "$url"
+ which xsel &>/dev/null && echo -n "$url" | xsel
+fi