正如标题所说,我想在我的监视命令中看到颜色。
前任:
# enable colors when running javascript unittests with watch
watch mocha
# enable colors when doing `ls`
watch ls -aG
答案1
有些程序,例如ls
试图变得“聪明”,只在连接到终端时才使用颜色。希望它们有办法强制使用颜色。ls
确实如此。
watch --color ls -aG --color
编辑:仅使用 Ubuntu Raring 进行测试。