diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-26 13:37:50 +0300 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-26 13:37:50 +0300 |
commit | 57e6f0ae0e12b916b7dd6ae5287289afbe45dcaf (patch) | |
tree | ae8b1f7ac1d811e7f5372b014eef440adce9cffc /.local | |
parent | e5079a986721eab1c8aa0e0a7e631cab113d4566 (diff) |
send-package: Minor improvements
Diffstat (limited to '.local')
-rwxr-xr-x | .local/bin/send-package | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.local/bin/send-package b/.local/bin/send-package index 86f1244..8c807bd 100755 --- a/.local/bin/send-package +++ b/.local/bin/send-package @@ -5,9 +5,9 @@ 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 -e "1iTo: `vlt raw Miscellaneous send-package-to`" \ - -e 's/$REPLACEME/{}/' "$tmpl" \ - | smail +| shuf -n1 \ +| tr A-Z a-z \ +| xargs -I{} -- \ + sed -e "1iTo: `vlt raw Miscellaneous send-package-to`" \ + -e 's/$REPLACEME/{}/' "$tmpl" \ +| smail |