Monthly Archives: October 2008

West Coast USA – Road Trip – The route

After working for the whole of the summer it’s time for a holiday! My wonderful girlfriend Di and myself are off on a road trip of the west coast USA for 10 days. We’re flying into Los Angeles, renting an … Continue reading

Posted in Travel | Tagged , , | 1 Comment

HOWTO: Recursively delete matching files on the Linux command line

An easy way to recursively delete files matching a particular pattern is to use this one liner: find | grep "search" | perl -nle unlink UPDATE – Another handy one liner to recursively delete directories is: rm -rf `find . … Continue reading

Posted in HOWTO, Linux | Tagged , , | Leave a comment