truncate Rails development/test logs
1 2 truncate ~/www/*/log/*.log
Even easier, ask cron to do it for me every night:
1 2 4 22 * * * * truncate -s 0k ~/www/*/log/*.log
DZone Snippets > laurelfan > logs
12723 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Laurel Fan http://blog.gorgorg.org
1 2 truncate ~/www/*/log/*.log
1 2 4 22 * * * * truncate -s 0k ~/www/*/log/*.log