Any suggestion for a good perl script to do the job?
rssEVOLUTION : Produce a FULL website with ANY RSS feed(s) in seconds.
contentSOLUTION : Allowing you to automatically grab articles from article directories,
import as many text files as you want at once, grab ANY content from ANY RSS feed, and scrape search engines, instantly.
You don't even need perl to do that, although it's certainly possible. I don't know exactly how your file structure is, so I don't know if this solution works for you, but it's how I'd do it.
----------------------
#!/bin/bash
for i in *
do
cat $i | sed 's/old_ars_code/new_ars_code/g' > .tmpabc123
mv .tmpabc123 $i
done
----------------------
That just goes through all files in a given directory and replaces "old_ars_code" with "new_ars_code".
Not perl, but it's probably just as fast (if not faster) and it's simple.
rssEVOLUTION : Produce a FULL website with ANY RSS feed(s) in seconds.
contentSOLUTION : Allowing you to automatically grab articles from article directories,
import as many text files as you want at once, grab ANY content from ANY RSS feed, and scrape search engines, instantly.
Comment