Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试着运行生菜。通常可以,但是当我使用时:
lettuce | less
有很多颜色命令,例如:
ESC[1;37m
写入文件时如何摆脱它?
例如 cucumber 在控制台打印漂亮的颜色,在 less 和 file 中打印普通文本。
这应该有效:
$ lettuce | less -R # keep the colors
或者
$ lettuce -v 3 # remove the colors
设置环境变量DISABLE_COLORS:
DISABLE_COLORS
export DISABLE_COLORS=true
任何值都应该有效,我只是选择true语义。
true