diff options
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/send-package | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.local/bin/send-package b/.local/bin/send-package new file mode 100755 index 0000000..4c6538b --- /dev/null +++ b/.local/bin/send-package @@ -0,0 +1,10 @@ +#!/bin/sh + +# Why not? + +readonly tmpl="${XDG_DATA_HOME:-$HOME/.local/share}/send-package/template" + +sed -En '/^Angel Cakes/,/^Doozies/s/(\t|\s{2,})/\n/gp' ~/doc/tit-names \ + | shuf -n1 \ + | xargs -I{} -- sed -e 's/$REPLACEME/{}/' -e "s/\$TO/$TO/" "$tmpl" + | msmtp -t --read-envelope-from |