My build of nnn with minor changes
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
12345678910111213 |
- #!/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
|