aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/pastebin
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pastebin')
-rwxr-xr-xplugins/pastebin11
1 files changed, 0 insertions, 11 deletions
diff --git a/plugins/pastebin b/plugins/pastebin
deleted file mode 100755
index 61039e6..0000000
--- a/plugins/pastebin
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env sh
-
-# Description: Paste contents of a text a file http://ix.io
-#
-# Shell: POSIX compliant
-# Author: Arun Prakash Jana
-
-if ! [ -z "$1" ]; then
- curl -F "f:1=@$1" ix.io
- read -r _
-fi