diff options
Diffstat (limited to '.local/bin/send-package')
-rwxr-xr-x | .local/bin/send-package | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.local/bin/send-package b/.local/bin/send-package new file mode 100755 index 0000000..bcd7eb0 --- /dev/null +++ b/.local/bin/send-package @@ -0,0 +1,11 @@ +#!/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 \ +| tr A-Z a-z \ +| xargs -I{} -- sed 's/$REPLACEME/{}/' "$tmpl" \ +| smail |