Never been to DZone Snippets before?

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

About this user

Laurel Fan http://blog.gorgorg.org

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

truncate Rails development/test logs

In rails applications development.log and test.log like to grow forever, which takes up space and makes them slow to grep. If I just delete them running processes with logs open might get confused. So I can use truncate instead:

   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
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS