feat(zsh): add rpaste configuration

primary
George Rawlinson 2022-06-14 17:14:04 +12:00
parent 95941987f6
commit 23b17c0aea
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
function rpaste() {
local file=${1:-/dev/stdin}
curl --data-binary @${file} https://paste.rs
}
# vim: ft=zsh expandtab tabstop=2 shiftwidth=2