4 lines
89 B
Bash
4 lines
89 B
Bash
|
|
errcho() { (>&2 echo $@); }
|
||
|
|
errcat() { (>&2 cat <<<"$@"); }
|
||
|
|
die() { errcho $@; exit 1; }
|