NTS

Find files larger than X and delete them in Mac OS/Unix terminal

21 January 2010

Another terminal oneliner I've just used to delete files larger than 10mb.

MySQL Find and Replace with helper tool that generates SQL for you

14 December 2009

How to find and replace text in MySql with an online tool that generates SQL for you.

Add all new files and folders to subversion with one line in terminal

13 December 2009

Mario & Luigi

This is basicly simple oneliner:
svn status | grep "^?" | awk '{print $2}' | xargs svn add
I'll try to explain it...