在stderr的Windows上更改文本输出颜色

时间:2012-04-10 20:20:39

标签: windows cmd stderr building

我最近发现了一个帖子,提供了一个解决方案,让stderr的文本输出为Linux(bash)的不同颜色

他们创建了以下bash脚本脚本

#!/bin/bash
{ $* 2>&1>&3|sed 's,.*,\x1B[33m&\x1B[0m,'>&2;} 3>&1

这会导致输出在来自stderr时打印黄色文本。 stdout仍然打印相同的颜色。

脚本保存在名为color的$ PATH目录中。这允许我使用make或scons运行脚本,并且它将以黄色显示来自stderr的所有文本。 (可以通过将33米改为31米来使文本变红)

color make CPU=x64 

这对于在编译时查找错误非常有用。

是否有可用于Windows cmd shell的类似脚本?

注意:如果有帮助,我已经在我的Windows计算机上安装了sed。

3 个答案:

答案 0 :(得分:6)

至于Windows'cmd.exe下对ANSI转义码的支持,请参阅ansicon。在将重定向逻辑转换为cmd.exe语法后,我准备了以下color.bat文件:

@Echo Off
(((%* 1>&3) 2>&1) | "c:\Program Files (x86)\GnuWin32\bin\sed.exe" "s,.*,\x1B[33m&\x1B[0m," 1>&2) 3>&1

不幸的是,流混合了(在某些行上,stdout和stderr中的字符在一行中混合在一起)。也许这种行为取决于所使用的sed.exe的版本,所以试一试。

如果这不起作用,请考虑使用最低cygwin次安装。我测试了你的color.sh脚本,我能够启动一个.bat文件,它可以正常工作而不会混合流。我使用的语法是:

./color.sh cmd /c test.bat

答案 1 :(得分:3)

我设计了一种使用纯Batch命令获得等效解决方案的方法,即没有Ansi,没有sed.exe等,只使用了findstr:

any_command 2>&1 1>&3 | findstr /N /A:4E "^"

在这种情况下,不是从stderr给出整行的不同颜色,而是由findstr提供的行号,但是,应该足以满足所述要求。我将很快编写一个小的辅助.exe程序,它将以另一种颜色显示整个stderr行。

答案 2 :(得分:2)

@ MBu,@ gnash117

我将color重命名为co,因为COLOR是Windows命令,我将其扩展为:

:: color output - Displays stderr output in different color
::
:: Credits to MBu and gnash117 at http://stackoverflow.com/questions/10095886/change-text-output-color-on-windows-for-stderr#10118710
:: 
:: Requires:
::   - http://sourceforge.net/projects/mingw/files/MSYS/
::   - http://adoxa.altervista.org/ansicon/
::   - http://www.autohotkey.com/
::
@echo off

if "%1"=="" goto :Help

:: 1;31 ... intense red foreground (see https://github.com/adoxa/ansicon/blob/master/sequences.txt for more colors)
:: \x07 ... BEL, but doesn't work :-(
(((%* 1>&3) 2>&1) | sed "s/.*/\x07\x1B[1;31m&\x1B[0m/" 1>&2) 3>&1
goto :EOF

:Help
setlocal
::------------------------------------------------
:: Adapt these in pairs according to your likings
set invokeKeys=[Shift]+[Enter]
set invokeHotkeys=+Enter
set invokeAfterRemoveKeys=[Alt]+[Enter]
set invokeAfterRemoveHotkeys=!Enter
set removeKeys=[Alt]+[c]
set removeHotkeys=!c
::-----------------------------------------------
set invokeText=invokes the entered command after preceding it with '%0 '
set invokeAfterRemoveText=invokes the entered command after removing the first three characters from the beginning
set removeText=removes the first three characters from the command line
echo Colors a command's stderr output as defined in %~f0
echo Usage:
echo   - Preceed a command with '%0 ' (e.g.: 'co dir not.existing.file' will show the resulting error message in a different color)
echo   - If the AutoHotkey script below is active:
echo     - %invokeKeys% ... %invokeText%
echo     - %invokeAfterRemoveKeys% ... %invokeAfterRemoveText%
echo     - %removeKeys% ... %removeText%
echo(
echo       The latter two are useful when using the command line history and having used %invokeKeys% before.
echo(
echo     Enabled by AutoHotkey script:
echo(
echo       #IfWinActive ahk_class ConsoleWindowClass
echo       ; %invokeText%
echo       %invokeHotkeys%::Send {Home}%0 {Enter}
echo       ; %invokeAfterRemoveText%
echo       %invokeAfterRemoveHotkeys%::SendInput {Home}{Del 3}{Enter}
echo       ; %removeText%
echo       %removeHotkeys%::SendInput {Home}{Del 3}{End}
echo       #IfWinActive
endlocal
:EOF