1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 09:53:22 -07:00
rc/sh/note
Connor Olding d5f3f14d72 merge compatibility lines
RIP meaningful last-modified dates
2024-03-26 15:08:14 -07:00

14 lines
405 B
Bash
Executable File

#!/usr/bin/env sh
# YES_ZSH YES_BASH YES_DASH YES_ASH
note() { ### @-
### 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.
local IFS=" "
printf "\033[1m%s\033[0m\n" "$*" >&2
}
[ -n "${preload+-}" ] || note "$@"