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-07-29 00:37:35 -07:00
|
|
|
|
2021-07-30 19:41:16 -07:00
|
|
|
note() { ### @-
|
2021-08-01 09:27:25 -07:00
|
|
|
### act like [`echo2`,](#echo2) but use a bright color to stand out more.
|
2021-08-02 06:06:13 -07:00
|
|
|
###
|
|
|
|
### **NOTE:** there also exists a [note(1)](https://www.daemon.de/projects/note/)
|
|
|
|
### program provided by the *note* package that i don't use.
|
2021-07-29 00:37:35 -07:00
|
|
|
local IFS=" "
|
|
|
|
printf "\033[1m%s\033[0m\n" "$*" >&2
|
|
|
|
}
|
|
|
|
|
2021-08-02 13:48:46 -07:00
|
|
|
[ -n "${preload+-}" ] || note "$@"
|