Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using grep to produce output that will be parsed by another program.

However, that program expects output only to be numeric or zero-bytes.

Now grep outputs a newline character after its output. I've checked the -Z option but it doesn't seem to work as I'm using grep for counting (-c).

I am executing in sh, not bash. So nesting it into echo -n "$(grep -c pattern)" doesn't work either.

How can I get rid off the trailing newline?

share|improve this question

2 Answers

up vote 5 down vote accepted

You can pipe it through tr and translate the \n to a \0 character.

share|improve this answer
This worked! Thanks! Will accept when it lets me ;P – Cobra_Fast Aug 30 '11 at 21:11
Glad it helped. – Amardeep Aug 30 '11 at 21:23

Use tr -d to delete characters in a string:

sh-3.2$ grep -c ' ' /etc/passwd | tr -d '\n'
69sh-3.2$ grep -c ' ' /etc/passwd | tr -d '\n' | xxd 
0000000: 3639                                     69
sh-3.2$ 
share|improve this answer
Without tr gdb shows 4\nj\000\000, with tr it shows 4\346j\000\000 as the value of what it gets back from the command line. 4 is the counted number which I want. – Cobra_Fast Aug 30 '11 at 21:09
Are you sure that grep is producing those characters after the number? – Johnsyweb Aug 30 '11 at 21:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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