dotfiles/zsh/.config/zsh/source/rpaste.zsh

6 lines
146 B
Bash
Raw Normal View History

2022-06-14 05:14:04 +00:00
function rpaste() {
local file=${1:-/dev/stdin}
curl --data-binary @${file} https://paste.rs
}
# vim: ft=zsh expandtab tabstop=2 shiftwidth=2