1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 09:07:12 -07:00
rc/sh/echo2

22 lines
406 B
Plaintext
Raw Normal View History

2021-07-29 00:37:35 -07:00
#!/usr/bin/env sh
# YES_ZSH
# YES_BASH
# YES_DASH
2021-09-23 06:48:05 -07:00
# YES_ASH
2021-07-29 00:37:35 -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
### ```
local IFS=' '
2021-07-29 00:37:35 -07:00
printf "%s\n" "$*" >&2
}
[ -n "${preload+-}" ] || echo2 "$@"