1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-24 00:17:11 -07:00
rc/sh/note

13 lines
247 B
Bash

#!/usr/bin/env sh
# YES_ZSH
# YES_BASH
# YES_DASH
note() { ### @-
### act like [`echo2`,](#echo2) but use a bright color to stand out more.
local IFS=" "
printf "\033[1m%s\033[0m\n" "$*" >&2
}
[ "${SOURCING:-0}" -gt 0 ] || note "$@"