Some commands that I use display colors, but when I use them with watch the colors disappears:
watch -n 1 node file.js
Is it possible to have the colors back on somehow?
Some commands that I use display colors, but when I use them with watch the colors disappears:
watch -n 1 node file.js
Is it possible to have the colors back on somehow?
From watch manual:
Non-printing characters are stripped from program output. Use "cat -v" as part of the command pipeline if you want to see them.
Though, I am not sure how to use it.