1 | GREEN='\033[0;32m' |
希望的输出:
“green string” 应该是绿色的
"yellow string" 应该是黄色的
实际输出:
1 | \033[0;32m |
if you are using the echo command, be sure to use the -e flag to allow backslash escapes.
所以我们应该把echo "${GREEN}"
改成echo -e "${GREEN}"
1 | GREEN='\033[0;32m' |
实际输出:
1 | green string |
green string
是绿色的
yellow string
是黄色的