mirror of
https://github.com/zoriya/dotfiles.git
synced 2026-06-09 21:09:29 +00:00
5 lines
83 B
Bash
5 lines
83 B
Bash
color()
|
|
{
|
|
(set -o pipefail; "$@" 2>&1 >&3 | sed $'s,.*,\e[31m&\e[m,' >&2 ) 3>&1
|
|
}
|