my-yadm/.local/dotfiles/functions/lhpaste.zsh

9 lines
172 B
Bash
Raw Normal View History

2019-01-06 12:32:03 -05:00
function lhpaste() {
2022-09-19 19:48:41 -04:00
local server_url="https://paste.linux-help.org/"
local expire="1day"
2019-01-06 12:32:03 -05:00
2022-09-19 19:48:41 -04:00
#zparseopts -D -E -F -
2019-01-06 12:32:03 -05:00
2022-09-19 19:48:41 -04:00
pbcli --host="$server_url" --expire="$expire"
2019-01-06 12:32:03 -05:00
}