내가 찾은ccat
자주 사용하는 명령어에 색상을 지정하는 명령어입니다 cat
. less
파이프를 통해 색상을 유지하는 방법이 있나요 ?
이렇게 하면 ccat config.json | less
색이 안 나올 것 같아요!
미리 감사드립니다.
답변1
설명 했듯이 다음 옵션을 cat --help
사용해야 합니다 color
.
-C, --color="auto": colorize the output; value can be "never", "always" or "auto"
Using color is auto both by default and with --color=auto.
With --color=auto, ccat emits color codes only when standard output is connected to a terminal.
따라서 less
색상을 지정하려면 다음을 수행해야 합니다.
ccat --color="always" config.json | less