Tagged Questions
6
votes
2answers
639 views
Using sed to color the output from a command on solaris
I have a ksh script that must work on both linux and solaris. I'm trying to color the output of specific commands. It works on linux (specifically RHEL6), but not on solaris (SunOS 5.10).
Command ...
2
votes
2answers
853 views
Colored Prompt in KornShell
According to this StackOverflow post, it is possible have a colored prompt in KornShell. I have not been able to figure out how to do this. I am able to use color:
echo -e "\033[34mLinux\033[00m"
...