in reply to Re^13: Help editing a file based off seach criteria
in thread Help editing a file based off seach criteria
open DATA, "</home/file.conf"; while (<DATA>) { if(m/\END\b/) { print "$.\n"; print "$_\n"; $pos = $.; $pos--; chomp $pos; $DESIRED_LINE_NUMBER = $pos; } } #$. = 0; do { $LINE = <DATA> } until $. == $DESIRED_LINE_NUMBER || eof; print $LINE;
Result: 1675 ---> Line found matching Search # *** END NEW MAPPING RULES SECTION *** ---Txt from Line -->Blank Line where I need to add values.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^15: Help editing a file based off seach criteria
by Corion (Patriarch) on Jan 13, 2009 at 18:45 UTC |