aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/pastebin
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-01-03 07:34:59 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-01-03 07:34:59 +0530
commitd43abec4bc07275ccb86e09f112ebab919537154 (patch)
treeda3e37d9a460f3abf507f61717ce3879bef107e4 /plugins/pastebin
parent045ad3da75503b091d7b93f41ff7a0159a1a11e9 (diff)
downloadnnn-d43abec4bc07275ccb86e09f112ebab919537154.tar.gz
Merge plugins pastebin and upload
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