in reply to Re: Re: Re: Deleting a line out of text file
in thread Deleting a line out of text file
Not sure I can use the perl command line backup example you gave me:foreach (@dat) { s/number/NEWWORD/; print DATA $_; } close(DATA);
because this is in a cgi web page script. Can I do some backup work as you suggested with this?perl -pi.bak -e 's/number/NEWWORD/;' file.txt
foreach (@dat) { s/number/NEWWORD/; print DATA $_; } close(DATA);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: Deleting a line out of text file
by dga (Hermit) on Aug 13, 2003 at 21:24 UTC |