mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
15 lines
297 B
Bash
Executable File
15 lines
297 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# The world's best pastebin terminal replacement. I'm so in love. You
|
|
# can call this from *within* vi!
|
|
|
|
if [ -n "$1" ]; then
|
|
exec curl -s "ix.io/$1"
|
|
fi
|
|
|
|
url=$(curl -s -F 'f:1=<-' http://ix.io)
|
|
wee "$url" 2>/dev/null
|
|
echo "$url"
|
|
which xclip >/dev/null || exit 0
|
|
echo "$url" | xclip
|