How to delete a part of the file with awk - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T10:47:45Zhttp://stackoverflow.com/feeds/question/1055032http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1055032/how-to-delete-a-part-of-the-file-with-awk0How to delete a part of the file with awkBartek2009-06-28T14:38:14Z2009-07-04T03:27:32Z
<p>Hi</p>
<p>I'm writing a shell script, which at some point has to take a file, search for a particular word in it and delete the whole text that comes after this word (including the word itself) - awk is the right tool I suppose, but I don't really know much about programming in it.</p>
<p>Could anyone help me?</p>
http://stackoverflow.com/questions/1055032/how-to-delete-a-part-of-the-file-with-awk/1055053#10550536Answer by Jonathan Leffler for How to delete a part of the file with awkJonathan Leffler2009-06-28T14:53:48Z2009-06-28T15:10:14Z<p>I suppose 'awk' is one tool for the job, though I think 'sed' is simpler for this particular operation. The specification is a bit vague. The simple version is:</p>
<ul>
<li>Find the first line containing a given word.</li>
<li>Delete that line and all following lines.</li>
</ul>
<p>For that, I'd use 'sed':</p>
<pre><code>sed '/word/,$d' file
</code></pre>
<p>The more complex version is:</p>
<ul>
<li>Find the first line containing a given word.</li>
<li>Delete the text on that line from the word onwards.</li>
<li>Delete all subsequent lines of text.</li>
</ul>
<p>I'd probably still use 'sed':</p>
<pre><code>sed -n '1,/word/{s/word.*//;p}' file
</code></pre>
<p>This inverts the logic. It doesn't print anything by default, but for lines 1 until the first line containing word it does a substitute (which does nothing until the line containing the word), and then print.</p>
<p>Can it be done in 'awk'? Not completely trivially because 'awk' autosplits input lines into words, and because you have to use functions to do substitutions.</p>
<pre><code>awk '/word/ { if (found == 0) {
# First line with word
sub("word.*", "")
print $0;
found = 1
}
}
{ if (found == 0) print $0; }' file
</code></pre>
<p>(<em>Edited</em>: change 'delete' to 'found' since 'delete' is a reserved word in 'awk'.)</p>
<p>In all these examples, the truncated version of the input file is written to standard output. To modify the file in situ, you either need to use Perl or Python or a similar language, or you capture the output in a temporary file which you copy over the original once the command has completed. (If you try 'script file' you process an empty file.)</p>
<p>There are various early exit optimizations that could be applied to the sed and awk scripts, such as:</p>
<pre><code>sed '/word/q' file
</code></pre>
<p>And, if you assume the use of the GNU versions of awk or sed, there are various non-standard extensions that can help with in-situ modification of the file.</p>
http://stackoverflow.com/questions/1055032/how-to-delete-a-part-of-the-file-with-awk/1055056#10550560Answer by Stobor for How to delete a part of the file with awkStobor2009-06-28T14:54:43Z2009-06-28T15:02:23Z<p>I'm assuming your input is something like this:</p>
<blockquote>
<p>Lorem ipsum dolor sit amet,<br />
consectetur adipiscing velit.<br />
Nullam neque sapien, molestie vel congue non,<br />
feugiat quis tellus. Ut quis<br />
nulla mi. Maecenas a ligula. </p>
</blockquote>
<p>and you want the output to be cut off at the word <code>'vel'</code> like so:</p>
<blockquote>
<p>Lorem ipsum dolor sit amet,<br />
consectetur adipiscing velit.<br />
Nullam neque sapien, molestie </p>
</blockquote>
<p>In that case, your awk script would be:</p>
<pre><code>cat lorem.txt | awk '
/\<vel\>/
{
print substr($0, 0, match($0, /\<vel\>/) - 1);
exit;
}
{ print }
'
</code></pre>
<p>The word you want to cut off at needs to replace both instances of the word <code>vel</code> in the script.</p>
<p>You can safely put the entire script on one line, too.</p>
http://stackoverflow.com/questions/1055032/how-to-delete-a-part-of-the-file-with-awk/1055064#10550640Answer by Adam Rosenfield for How to delete a part of the file with awkAdam Rosenfield2009-06-28T14:57:19Z2009-06-28T14:57:19Z<p>I'm not sure how to do it with awk, but you could do it with sed:</p>
<pre><code>sed -i~ -e 's/the-word-to-find.*$//' the-file
</code></pre>
<p>This will delete everything from <code>the-word-to-find</code> to the end of the line, on every line that contains <code>the-word-to-find</code>. If you want to delete the rest of the file upon the first occurrence of <code>the-word-to-find</code>, you could do:</p>
<pre><code>sed -i~ -e 's/\(the-word-to-find\).*$/\1/;/the-word-to-find/,$d'
</code></pre>
http://stackoverflow.com/questions/1055032/how-to-delete-a-part-of-the-file-with-awk/1055074#10550740Answer by dhn for How to delete a part of the file with awkdhn2009-06-28T15:04:01Z2009-06-28T19:14:38Z<p>This awk one-liner should do the trick:
{ sub(/ word.*/, ""); print }
For every line, if the line contains a pattern that starts with word (proceeded by space) and goes to the end of the line - replace the pattern with the empty string - then print the updated line.</p>
<p>[ Figured the question could read either way (whole text on that line or whole text in the file). If one wanted to skip the rest of the file one could: { skip = gsub(/ word.*/, ""); print ; if (skip) exit } ]</p>
http://stackoverflow.com/questions/1055032/how-to-delete-a-part-of-the-file-with-awk/1081425#10814250Answer by ghostdog74 for How to delete a part of the file with awkghostdog742009-07-04T03:27:32Z2009-07-04T03:27:32Z<pre><code>awk '/word/{exit}1' file
</code></pre>