标签: tcl itcl
我在tcl中有一些输出,使用这样的put打印:
puts "hello world"
我们可以用不同颜色打印相同的颜色吗?
答案 0 :(得分:1)
您需要使用ANSI Escape sequences
例如,要以粗体红色打印线:
puts -nonewline "\033\[1;31m"; #RED puts "My RED String" puts -nonewline "\033\[0m";# Reset