mirror of
https://github.com/notwa/rc
synced 2024-11-05 06:39:02 -08:00
8 lines
266 B
Bash
Executable file
8 lines
266 B
Bash
Executable file
#!/usr/bin/env sh
|
|
# compat: +ash +bash +dash +hush +ksh +mksh +oksh +osh +posh +yash +zsh
|
|
|
|
unwrap() { ### @- join paragraphs into one line each.
|
|
awk 'BEGIN{RS="\n\n";FS="\n"}{for(i=1;i<=NF;i++)printf "%s ",$i;print "\n"}'
|
|
}
|
|
|
|
[ -n "${preload+-}" ] || unwrap "$@"
|