Browsing category

Snippets

WordPress ping list tested

WordPress ping list tested a nice feature of WordPress is to spread your new blog entries to all the important blog search engines of the world. therefor I have searched around and tested those links...

Replace string within text files using Perl

Replace string within text files using Perl To Replace string within text files using Perl all you have to do is: perl -pi -e ‘s/oldstring/newstring/g’ * The search string has to be written in regular...