aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/pastebin
blob: de130e456d5023029733e8173705d0da05bfef48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env sh

# Description: Paste contents of a text a file to paste.ubuntu.com using pastebinit
#
# pastebinit: https://launchpad.net/pastebinit
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana

if ! [ -z "$1" ]; then
    pastebinit "$1"
    read input
fi