mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
8 lines
261 B
Bash
8 lines
261 B
Bash
# A simple alias for sprunge, but only if there isn't a smarter, better one out
|
|
# there in $PATH
|
|
#
|
|
# A good one to add is the sprunge script in this directory.
|
|
|
|
if [ -z "${commands[sprunge]}" ]; then
|
|
alias sprunge="curl -F 'sprunge=<-' http://sprunge.us/"
|
|
fi
|