2021-07-29 00:37:35 -07:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
# YES_ZSH
|
2021-07-29 05:44:12 -07:00
|
|
|
# YES_BASH
|
|
|
|
# YES_DASH
|
2021-09-23 06:48:05 -07:00
|
|
|
# YES_ASH
|
2021-07-29 00:37:35 -07:00
|
|
|
|
2021-07-30 19:41:16 -07:00
|
|
|
echo2() { ### @-
|
2021-08-01 08:41:31 -07:00
|
|
|
### print arguments joined by spaces to stderr without parsing anything.
|
|
|
|
###
|
|
|
|
### ```
|
|
|
|
### $ echo -e 'this\nthat' those
|
|
|
|
### this
|
|
|
|
### that those
|
|
|
|
### $ echo2 -e 'this\nthat' those
|
|
|
|
### -e this\nthat those
|
|
|
|
### ```
|
2021-07-30 19:41:16 -07:00
|
|
|
local IFS=' '
|
2021-07-29 00:37:35 -07:00
|
|
|
printf "%s\n" "$*" >&2
|
|
|
|
}
|
|
|
|
|
2021-08-02 13:48:46 -07:00
|
|
|
[ -n "${preload+-}" ] || echo2 "$@"
|