How to delete a part of the file with awk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T10:47:45Z http://stackoverflow.com/feeds/question/1055032 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1055032/how-to-delete-a-part-of-the-file-with-awk 0 How to delete a part of the file with awk Bartek 2009-06-28T14:38:14Z 2009-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#1055053 6 Answer by Jonathan Leffler for How to delete a part of the file with awk Jonathan Leffler 2009-06-28T14:53:48Z 2009-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#1055056 0 Answer by Stobor for How to delete a part of the file with awk Stobor 2009-06-28T14:54:43Z 2009-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 ' /\&lt;vel\&gt;/ { print substr($0, 0, match($0, /\&lt;vel\&gt;/) - 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#1055064 0 Answer by Adam Rosenfield for How to delete a part of the file with awk Adam Rosenfield 2009-06-28T14:57:19Z 2009-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#1055074 0 Answer by dhn for How to delete a part of the file with awk dhn 2009-06-28T15:04:01Z 2009-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#1081425 0 Answer by ghostdog74 for How to delete a part of the file with awk ghostdog74 2009-07-04T03:27:32Z 2009-07-04T03:27:32Z <pre><code>awk '/word/{exit}1' file </code></pre>