TheBonsai 1128773278 learn VT100 control codes compilation at http://www.thebonsai.net/vt100-codes.txt TheBonsai 1182225255 forget TheBonsai 1182225276 learn http://bash-hackers.org/wiki/doku.php?id=scripting:terminalcodes TheBonsai 1234109256 forget TheBonsai 1234109271 learn Terminalcodes and stuff: http://www.bash-hackers.org/wiki/doku.php/scripting/terminalcodes geirha 1373891309 forget geirha 1373891323 learn Terminalcodes and stuff: http://wiki.bash-hackers.org/scripting/terminalcodes lhunath 1426690319 forget lhunath 1426690418 learn ANSI X3.64 is a terminal control code standard supported by most modern terminals. VT100 is a subset implemented by DEC's VT100/102. DO NOT hardcode codes, use tput(1) instead. There are many different terminals and that use slightly different codes. http://unix.stackexchange.com/a/5802 http://wiki.bash-hackers.org/scripting/terminalcodes lhunath 1426690497 forget lhunath 1426690524 learn ANSI X3.64 is a terminal control code standard supported by most modern terminals. VT100 is a subset implemented by DEC's VT100/102. DO NOT hardcode codes, use tput(1) instead (eg. red=$(tput setaf 1)). There are many different terminals and that use slightly different codes. http://unix.stackexchange.com/a/5802 http://wiki.bash-hackers.org/scripting/terminalcodes lhunath 1426690545 forget lhunath 1426690581 learn ANSI X3.64 is a terminal control code standard supported by most modern terminals. VT100 is a subset implemented by DEC's VT100/102. DO NOT hardcode codes, use tput(1) instead (eg. red=$(tput setaf 1)). Many different terminals use slightly different codes, tput finds the right code for the job. http://unix.stackexchange.com/a/5802 http://wiki.bash-hackers.org/scripting/terminalcodes