vote up 0 vote down star

With sed, what is a one liner to print the first n characters. I am doing the following.

grep -G 'defn -test.*' OctaneFullTest.clj | sed ....

flag

74% accept rate

3 Answers

vote up 2 vote down check

Don't use sed, use cut.

grep .... | cut -c 1-N

If you MUST use sed:

grep ... | sed -e 's/^\(.\{12\}\).*/\1/'
link|flag
vote up 0 vote down

For more complex processing, I recommend writing a quick awk script. It's a handy skill to have from time to time. Sorry no code right now. But that is easy in awk.

link|flag
vote up 0 vote down

Strictly with sed:

grep ... | sed -e 's/^\(.\{N\}\).*$/\1/'
link|flag

Your Answer

Get an OpenID
or

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