A friend of mine made her original website using FrontPage Express 2.0 circa 2000 before moving to Blogger. Today, she's got some 300 URLs from that old site that are returning "404 Not Found". If possible, I'd like to batch remove them (there are about 100 .htm pages) and replace with a simple 404 Not Found notice. I know how to remove individual URLs from the pages using a find/replace one liner, but doing them all in one pass has so far eluded me. Any advice about where to look for more info about how best to go about this would be greatly appreciated. Thanks!
UPDATE 10/27/17
Thanks everybody for all the help and good ideas! Turns out the problems I was having with running the one-liner were with malformed URLs and had nothing to do with the code. Once that was fixed, I just stacked the 300 one-liners on top of each other and it ran perfectly. Like so:
find . -type f -name "*.htm" -print|xargs perl -i -pe 's/http:\/\/exam
+ple1.com/[404 Not Found]/g';
find . -type f -name "*.htm" -print|xargs perl -i -pe 's/http:\/\/exam
+ple2.com/[404 Not Found]/g';
find . -type f -name "*.htm" -print|xargs perl -i -pe 's/http:\/\/exam
+ple3.com/[404 Not Found]/g';
etc.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|