1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-15 21:03:05 -07:00
rc/sh/note

17 lines
411 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
note() { ### @-
2021-08-01 09:27:25 -07:00
### act like [`echo2`,](#echo2) but use a bright color to stand out more.
###
### **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
}
[ -n "${preload+-}" ] || note "$@"