Terminal

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.

Synchronize two folders on a Mac with Automator and Rsync

Power of Automator and Unix combined

14 December 2009

I really miss some good Automator tutorials online. It's such a great and I guess underrated and underused tool. Here I'll show you how to combine it with rsync to easily synchronise two folders.

Synchronize two folders on a Mac and other Unix Systems with Rsync

From terminal

14 December 2009

One of the great things with Mac OS X is that you have many of the cool tools from UNIX world. One of them is definitely Rsync. I'll show you how to use it to synchronise files from of two different folders from terminal and using mighty automator.

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...