forked from Maurice/pastabble
15 lines
316 B
Bash
15 lines
316 B
Bash
#!/bin/sh
|
|
# Shell aliasses and functions.
|
|
# Load or copy this file into your .profile or (b)ashrc
|
|
PURL="https://paste.plabble.org"
|
|
|
|
alias pcopy="curl -F 'content=<-' $PURL -w '\n'"
|
|
alias pshort="curl -F 'link=<-' $PURL/to -w '\n'"
|
|
|
|
function ppaste() {
|
|
curl $PURL/$1
|
|
}
|
|
|
|
function pgo() {
|
|
firefox $PURL/to/$1
|
|
} |