mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 20:14:22 +00:00
21 lines
237 B
Bash
21 lines
237 B
Bash
# vim: set ts=3 sw=3 noet ft=sh : bash
|
||
|
||
echo_cmd() {
|
||
eval 'echo "$@"'
|
||
eval "$@"
|
||
return $?
|
||
}
|
||
|
||
color() {
|
||
[ -n "$NO_COLOR" ] && return
|
||
|
||
echo -n "[0;${1:-0}m"
|
||
}
|
||
|
||
|
||
if [ ! -t 1 ]; then
|
||
if [ -z "$FORCE_COLOR" ]; then
|
||
NO_COLOR=1
|
||
fi
|
||
fi
|