2

Say I have some file with a bunch of lines in the form

someString=someMoreCharacters
anotherString.blah=foo=bar
blah.blah.blah=foo.bar.=foobar

Desired output

someString
anotherString.blah
blah.blah.blah

I want to use awk to extract the substring that starts at the beginning of the line and goes up until, but not including the first equals sign. I want to be able to pipe this output to xargs.

1
  • 1
    sed's greediness makes this a quick fix, sed 's/=.*//', although I've never done anything with awk.
    – Rob
    Commented Mar 16, 2012 at 18:06

1 Answer 1

9

In Awk:

awk '{sub(/=.*/, ""); print}' filename

But, I think Rob's solution is easier:

sed 's/=.*//' filename

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .