Categories
Tags
Adventure BMW 650GS BMW 1200GS CentOS Death Valley Diving eclipse find FLV Fraser Island Golden Gate grand canyon Great Ocean Road grep GWT Hibernate holiday Hollywood Lucene Maps maven Motorbike mule ride Nokia N95 NYC Oz Paris Perl road trip San Francisco Search sed Singapore Solr struts2 Tomcat USA Vegas Video x264 YosemiteLinks
Category Archives: HOWTO
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
HOWTO: Recursive search and replace on the Linux command line
The ‘traditional’ way to search and replace on the command line was to use some combination of grep/find/perl/sed etc. Which offers great flexibility but at the end of the day can turn into a right pain in order to complete … Continue reading
HOWTO: Compiling the latest FFmpeg & x264 on CentOS 4
Intoduction FFmpeg is a superb video processing tool used to encode and transcode video files. In this particular project I needed to build “youtube” style video upload which would transcode into FLV, specifically catering for video files from the Nokia … Continue reading