Created
August 22, 2014 05:43
-
-
Save zodiac1111/8d1d656619b2bfa5442c to your computer and use it in GitHub Desktop.
终端颜色
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 参考: | |
# * http://blog.csdn.net/cherylnatsu/article/details/5878913 | |
# * http://www.termsys.demon.co.uk/vtansi.htm | |
# 颜色定义 | |
export GREEN=\033[32m | |
export RED=\033[31m | |
# 效果定义 | |
export BRIGHT=\033[1m | |
export Underscore=\033[4m | |
export REVERSE=\033[7m | |
# 结束颜色/效果 | |
export _COLOR=\033[0m | |
# 特别的需要高亮的指令 | |
export CMD_HIGHLIGHT = $(RED)$(Underscore)$(BRIGHT) | |
# 压缩包 | |
export DIST_PACKAGE_COLOR = $(GREEN)$(BRIGHT) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment