The problem I have is pretty straightforward (or so it seems). All I want to do is replace a paragraph of text (it's a header comment) with another paragraph. This will need to happen across a diverse number of files in a directory hierarchy (source code tree).

The paragraph to be replaced must be matched in it's entirety as there are similar text blocks in existence.

e.g.

To Replace

// ----------
// header
// comment
// to be replaced
// ----------

With

// **********
// some replacement
// text
// that could have any
// format
// **********

I have looked at using sed and from what I can tell the most number of lines that it can work on is 2 (with the N command).

My question is: what is the way to do this from the linux command line?

EDIT:

Solution obtained: Best solution was Ikegami's, fully command line and best fit for what I wanted to do.

My final solution required some tweaking; the input data contained a lot of special characters as did the replace data. To deal with this the data needs to be pre processed to insert appropriate \n's and escape characters. The end product is a shell script that takes 3 arguments; File containing text to search for, File containing text to replace with and a folder to recursively parse for files with .cc and .h extension. It's fairly easy to customise from here.

SCRIPT:

#!/bin/bash
if [ -z $1 ]; then
    echo 'First parameter is a path to a file that contains the excerpt to be replaced, this must be supplied'
  exit 1
fi

if [ -z $2 ]; then
    echo 'Second parameter is a path to a file contaiing the text to replace with, this must be supplied'
  exit 1
fi

if [ -z $3 ]; then
    echo 'Third parameter is the path to the folder to recursively parse and replace in'
  exit 1
fi

sed 's!\([]()|\*\$\/&[]\)!\\\1!g' $1 > temp.out
sed ':a;N;$!ba;s/\n/\\n/g' temp.out > final.out
searchString=`cat final.out`
sed 's!\([]|\[]\)!\\\1!g' $2 > replace.out
replaceString=`cat replace.out`

find $3 -regex ".*\.\(cc\|h\)" -execdir perl -i -0777pe "s{$searchString}{$replaceString}" {} +
link|improve this question

Can't you just use sed, including the newlines in your regex? – wim Oct 31 '11 at 5:13
I tried that, found this: backreference.org/2009/12/23/how-to-match-newlines-in-sed – radman Oct 31 '11 at 5:20
feedback

5 Answers

up vote 5 down vote accepted
find -name '*.pm' -exec perl -i~ -0777pe'
    s{// ----------\n// header\n// comment\n// to be replaced\n// ----------\n}
     {// **********\n// some replacement\n// text\n// that could have any\n// format\n// **********\n};
' {} +
link|improve this answer
feedback

Using perl:

#!/usr/bin/env perl
# script.pl
use strict;
use warnings;
use Inline::Files;

my $lines = join '', <STDIN>; # read stdin
my $repl = join '', <REPL>; # read replacement
my $src = join '', <SRC>; # read source
chomp $repl; # remove trailing \n from $repl
chomp $src; # id. for $src
$lines =~ s@$src@$repl@gm; # global multiline replace 
print $lines; # print output

__SRC__
// ----------
// header
// comment
// to be replaced
// ----------
__REPL__
// **********
// some replacement
// text
// that could have any
// format
// **********

Usage: ./script.pl < yourfile.cpp > output.cpp

Requirements: Inline::Files (install from cpan)

Tested on: perl v5.12.4, Linux _ 3.0.0-12-generic #20-Ubuntu SMP Fri Oct 7 14:56:25 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux

link|improve this answer
feedback

As long as the header comments are delimited uniquely (i.e., no other header comment starts with // ----------), and the replacement text is constant, the following awk script should do what you need:

BEGIN { normal = 1 }

/\/\/ ----------/ {
    if (normal) {
        normal = 0;
        print "// **********";
        print "// some replacement";
        print "// text";
        print "// that could have any";
        print "// format";
        print "// **********";
    } else {
        normal = 1;
        next;
    }
}

{
    if (normal) print;
}

This prints everything it sees until it runs into the paragraph delimiter. When it sees the first one, it prints out the replacement paragraph. Until it sees the 2nd paragraph delimiter, it will print nothing. When it sees the 2nd paragraph delimiter, it will start printing lines normally again with the next line.

While you can technically do this from the command line, you may run into tricky shell quoting issues, especially if the replacement text has any single quotes. It may be easier to put the script in a file. Just put #!/usr/bin/awk -f (or whatever path which awk returns) at the top.

EDIT

To match multiple lines in awk, you'll need to use getline. Perhaps something like this:

/\/\/ ----------/ {
    lines[0] = "// header";
    lines[1] = "// comment";
    lines[2] = "// to be replaced";
    lines[3] = "// ----------";

    linesRead = $0 "\n";
    for (i = 0; i < 4; i++) {
         getline line;
         linesRead = linesRead line;
         if (line != lines[i]) {
             print linesRead; # print partial matches
             next;
         }
    }

    # print the replacement paragraph here
    next;
}
link|improve this answer
To clarify, unfortunately I want to match the replace text exactly. No match should occur unless the entire paragraph matches. Certain parts of the paragraph to be replaced appear elsewhere, in particular the header delimiter. – radman Oct 31 '11 at 5:23
Sorry, I didn't catch that the first time around. Added a different bit of code that matches the entire paragraph. – Daniel Gallagher Oct 31 '11 at 5:47
feedback

Here is one way which should satisfy your requirement to do it all from the command line (which may be a requirement that adds unnecessary complexity to the problem, as I will explain below).

perl -0777 -pi.bak -e '$nl = qq/\n/; s!\Qexact${nl}search${nl}text${nl}\E!replacement!' testdata.dat

The difficulty is dealing with embedded newlines in the search terms, while at the same time not letting the RE engine mistakenly treat literal text as metacharacters. \Q and \E escape the metacharacters in the search pattern, and the ${nl} (which is the same as $nl, but unambiguous in interpolation) allows you to express that newline despite the escaping of metacharacters.

I also used an alternate delimiter for the s/// operator. If it turns out you've got '!' in your search-terms or replace-terms, use a different alternate delimiter.

It would be easier if there weren't a "Can this be done from the command line?" requirement. If you could simply embed the exact search term, complete with literal newlines, as could be done in a multi-line script, then you really could \Q and \E the entire search string without having to find a way to re-inject newlines.

Update: Per your request here's an example that works with a copy and paste of your search term. Because this specific search term contains nothing that would be considered a metacharacter, I didn't employ the \Q \E quoting and the ${nl} newlines. Remember, I really feel that a multi-line script solution is less fragile because you can more easily paste your search term into a HERE doc. But here's the single line solution:

perl -0777 -pi.bak -e '$repl = "// ********* some replacement\n// text\n// that could have any\n// format\n// *********"; $nl = "\n"; s!// -+\n// header\n// comment\n// to be replaced\n// -+!$repl!' ~/bin/testtext.txt

Again, this is not a "best" solution, it's a solution that meets your original specification. I'm reminded the time that I went to buy a laptop bag for my computer. I told the sales clerk I wanted the most minimal bag he had, because I didn't want a bunch of extra pockets. He brought me a neoprene sleeve, which I had never considered. It was more minimal than I anticipated. I had to tell him, "I know that's exactly what I asked for, but now I realize that's not exactly what I want."

link|improve this answer
As it turns out I'm alright with stuff being in scripts, just so long as it can be run from the command line. I didn't mean to be so restrictive with the question. I was still assuming that there might be a way to achieve the goal from the command line directly. – radman Oct 31 '11 at 5:50
The solution I posted does inelegantly meet the "from the command-line" requirement. If it's done as a script, put the search pattern exactly as literal text in a single-quoted HERE doc, pass it through quotemeta(), and then use it as the search pattern in a pattern match. Set the input record separator to undef, slurp in the file, print it back out after the pattern match. Done. Easy! – DavidO Oct 31 '11 at 5:55
I can't get this to work after a fair bit of trying, can you supply a command and some test data it works with? – radman Oct 31 '11 at 6:17
feedback

This might work:

# cat <<! | sed ':a;N;s/this\nand\nthis\n/something\nelse\n/;ba'
> a
> b
> c
> this
> and
> this
> d
> e
> this
> not
> this
> f
> g
> !
a
b
c 
something
else
d
e
this
not
this 
f
g

The trick is to slurp everything into the pattern space using the N and the loop :a;...;ba This is probably more efficient:

sed '1{h;d};H;$!d;x;s/this\nand\nthis\n/something\nelse\n/g;p;d'

A more general purpose solution may use files for match and substitute data like so:

match=$(sed ':a;N;${s/\n/\\n/g};ba;' match_file)
substitute=$(sed ':a;N;${s/\n/\\n/g};ba;' substitute_file)
sed '1{h;d};H;$!d;x;s/'"$match"'/'"$substitute"'/g;p;d' source_file

Another way (probably less efficient) but cleaner looking:

sed -s '$s/$/\n@@@/' match_file substitute_file | 
sed -r '1{h;d};H;${x;:a;s/^((.*)@@@\n(.*)@@@\n(.*))\2/\1\3/;ta;s/(.*@@@\n){2}//;p};d' - source_file

The last uses the GNU sed --separate option to treat each file as a separate entity. The second sed command uses a loop for the substitute to obviate .* greediness.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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