diff options
Diffstat (limited to 'plugins/pastebin')
-rwxr-xr-x | plugins/pastebin | 11 |
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 |