如何在Windows命令行中回显不同颜色我知道color bf命令设置整个命令行窗口的颜色,但我想以不同的颜色打印一行。
3 回答
慕工程0101907
TA贡献1887条经验 获得超5个赞
CALL:ECHORED "Print me in red!" :ECHORED %Windir%\System32\WindowsPowerShell\v1.0\Powershell.exe write-host -foregroundcolor Red %1 goto:eof
编辑: (现在更简单了!)
Powershell
这个 路径
不需要指定,因为它应该已经在环境变量中了。 毫不含糊
命令可以是 ..例如,您可以: 使用 -fore
而不是 -foregroundcolor
使用 -back
而不是 -backgroundcolor
这个命令基本上也可以用来‘ 内联
代替 echo
(而不是像上面那样创建单独的批处理文件)。
例子:
powershell write-host -fore Cyan This is Cyan text powershell write-host -back Red This is Red background
更多资料:
- Write-Host
- 3 回答
- 0 关注
- 736 浏览
添加回答
举报
0/150
提交
取消