mirror of
https://github.com/notwa/rc
synced 2024-11-05 08:19:03 -08:00
11 lines
169 B
Bash
11 lines
169 B
Bash
#!/usr/bin/env sh
|
|
# YES_ZSH
|
|
# YES_BASH
|
|
# YES_DASH
|
|
|
|
note() { ### @-
|
|
local IFS=" "
|
|
printf "\033[1m%s\033[0m\n" "$*" >&2
|
|
}
|
|
|
|
[ "${SOURCING:-0}" -gt 0 ] || note "$@"
|