vote up 2 vote down star
1

I am trying to take a line of text like

    13) Check for orphaned Path entries

and change it to (I want the bash color codes to colorize the output, not display on the screen)

\033[32m*\033[0m Check for orphaned Path entries

with bash color codes to colorize the asterisk to make it stand out more. I have a sed command that does most of that, except it doesn't handle the color codes correctly since it sees them as references to replacement text.

What I have so far:

sed "s/ *13) \(.*\)/ \033[32m*\033[0m \1/"

which produces the following output when run on the string I gave at the beginning:

   13) Check for orphaned Path entries33[32m*  13) Check for orphaned Path entries33[0m Check for orphaned Path entries

It is taking the \0 of the \033 and replacing it with the original string. Doubling the backslashes in the replacement string doesn't make a difference; I still get the same output text.

How do I insert bash color escapes into a sed replacement expression?

flag

Quadrupling the backslashes caused the same effect as using single quotes and doubled bashslashes, as suggested by @DreadPirateShawn. I get \033[32m*\033[0m output directly to the console, without being turned into color codes. – Chris Lieb Jun 30 at 15:42
It's basically the same thing. That's why I head already deleted my comment. – balpha Jun 30 at 15:44

4 Answers

vote up 3 vote down check

Chances are that the sed you are using doesn't understand octal, but it may understand hex. Try this version to see if it works for you (using \x1b instead of \033):

sed "s/ *13) \(.*\)/ \x1b[32m*\x1b[0m \1/"
link|flag
1  
if it does grok octal, use \o033 – Hasturkun Jun 30 at 16:37
@Hasturkun: That's why it pays to read the info file. Sometimes man just doesn't cut it. Thanks for the info. – Dennis Williamson Jun 30 at 17:05
@Dennis: Do you mean that sometimes man does not have the same manual as info? – Masi Jul 1 at 19:26
@Masi: It says as much in the sed man page – Hasturkun Jul 1 at 23:47
vote up 3 vote down

Double the backslashes in the replacement string, AND use single instead of double quotes around the sed expression:

sed 's/ *13) \(.*\)/ \\033[32m*\\033[0m \1/'

This prevents the shell from interfering with the sed behaviour.

~~~~~~~

Update:

Use a script to achieve color cleanly:

colorize.sh

#!/bin/sh

HIGHLIGHT=`echo -e '\033[32m'`
NORMAL=`echo -e '\033[0m'`

sed "s/ *13) \(.*\)/ $HIGHLIGHT*$NORMAL \1/" yourinputtext
link|flag
While sed isn't trying to replace the \0 now, I'm still not getting colored output. – Chris Lieb Jun 30 at 15:41
To be more specific, I get \033[32m*\033[0m output directly to the console, without being turned into color codes – Chris Lieb Jun 30 at 15:43
Not quite sure what you mean... My aim was to solve the problem of escaping the '\' character in the replacement string, and did so -- I get the same output text you cite in your "change it to" string above. Beyond that, you know what you're looking for color-wise more than I do; just wanted to make sure you had the tools nailed down to do so. :-) – DreadPirateShawn Jun 30 at 15:44
Just saw your update -- I misunderstood your "change it to" string, then... thought that's what you wanted to output. Hmm... – DreadPirateShawn Jun 30 at 15:45
PS - My script works, but Dennis Williamson's answer accomplishes the same thing, and is far shorter. Use his. – DreadPirateShawn Jun 30 at 16:28
show 1 more comment
vote up 0 vote down

Try this :

sed  "s/ *13) \(.*\)/ \\\\033 \1/"

i.e. slash-slash-slash-slash-033

link|flag
vote up 3 vote down

your '\033' is in fact a single ESC (escape) character, to output this you may use any one of the following:

  • \o033
  • \d027
  • \x1B
link|flag
+1 for the octal prefix - most programs just recognize the leading zero. – Dennis Williamson Jun 30 at 17:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.