不是很漂亮,但是诀窍:
原文链接:https://www.f2er.com/bash/383874.html(将其保存到foo.bash,并在任何地方执行grep … ./foo.bash)
#!/bin/bash while read line do echo -e "\e[1;31m$line" read line echo -e "\e[1;32m$line" done echo -en "\e[0m"
在这里可以找到list of color codes in bash.