2021-07-29 00:37:35 -07:00
|
|
|
#!/usr/bin/env sh
|
2024-03-26 15:08:14 -07:00
|
|
|
# YES_ZSH YES_BASH YES_DASH 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 "$@"
|