diff options
author | 2020-01-03 07:34:59 +0530 | |
---|---|---|
committer | 2020-01-03 07:34:59 +0530 | |
commit | d43abec4bc07275ccb86e09f112ebab919537154 (patch) | |
tree | da3e37d9a460f3abf507f61717ce3879bef107e4 /plugins/pastebin | |
parent | 045ad3da75503b091d7b93f41ff7a0159a1a11e9 (diff) | |
download | nnn-d43abec4bc07275ccb86e09f112ebab919537154.tar.gz |
Merge plugins pastebin and upload
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 |