Blog | tag: NTS
Thursday, 21. january 2010.
Find files larger than X and delete them in Mac OS/Unix terminal
Another terminal oneliner I've just used to delete files larger than 10mb.
Monday, 14. december 2009.
MySQL Find and Replace with helper tool that generates SQL for you
How to find and replace text in MySql with an online tool that generates SQL for you.
Sunday, 13. december 2009.
Add all new files and folders to subversion with one line in terminal
This is basicly simple oneliner:
svn status | grep "^?" | awk '{print $2}' | xargs svn add
I'll try to explain it...
bananica.com | Branko Jevtić's piece of web
RSS feed
Recent posts
- Thursday, 21. january 2010. Find files larger than X and delete them in Mac OS/Unix terminal
- Tuesday, 15. december 2009. Bananica.com - Finally!
- Monday, 14. december 2009. MySQL Find and Replace with helper tool that generates SQL for you
- Monday, 14. december 2009. Synchronize two folders on a Mac with Automator and Rsync
- Monday, 14. december 2009. Synchronize two folders on a Mac and other Unix Systems with Rsync
- Sunday, 13. december 2009. Add all new files and folders to subversion with one line in terminal



Recent comments
I managed to compile several snippets from the net and came up with this:
svn status | grep "^?" | awk '{$1="";$0=substr($0,2)}1' | sed -e "s,[^.],\'&," -e "s,\$,\'," | xargs svn add
Phew! Works in Snow Leopard.