mirror of
https://github.com/notwa/rc
synced 2024-11-05 02:49:02 -08:00
9 lines
128 B
Bash
9 lines
128 B
Bash
#!/usr/bin/env sh
|
|
# YES_ZSH
|
|
|
|
echo2() {
|
|
local IFS=" "
|
|
printf "%s\n" "$*" >&2
|
|
}
|
|
|
|
[ "${SOURCING:-0}" -gt 0 ] || echo2 "$@"
|