show/hide this revision's text 2 Fix trivial typo

I'm assuming your input is something like this:

Lorem ipsum dolor sit amet,
consectetur adipiscing velit.
Nullam neque sapien, molestie vel congue non,
feugiat quis tellus. Ut quis
nulla mi. Maecenas a ligula.

and you want the output to be cut off at the word 'vel' like so:

Lorem ipsum dolor sit amet,
consectetur adipiscing velit.
Nullam neque sapien, molestie

In that case, your awk script would be:

cat lorem.txt | awk ' 
  /\<vel\>/ 
  {
     print substr($0, 0, match($0, /\<vel\>/) - 1); 
     exit; 
  } 

  { print }
'

The word you want to cut off at needs to replae replace both instances of the word vel in the script.

You can safely put the entire script on one line, too.

show/hide this revision's text 1

I'm assuming your input is something like this:

Lorem ipsum dolor sit amet,
consectetur adipiscing velit.
Nullam neque sapien, molestie vel congue non,
feugiat quis tellus. Ut quis
nulla mi. Maecenas a ligula.

and you want the output to be cut off at the word 'vel' like so:

Lorem ipsum dolor sit amet,
consectetur adipiscing velit.
Nullam neque sapien, molestie

In that case, your awk script would be:

cat lorem.txt | awk ' 
  /\<vel\>/ 
  {
     print substr($0, 0, match($0, /\<vel\>/) - 1); 
     exit; 
  } 

  { print }
'

The word you want to cut off at needs to replae both instances of the word vel in the script.

You can safely put the entire script on one line, too.