CirclingMinds

June 20, 2008

How to delete rails log files

Filed under: ruby-on-rails — shovan @ 9:55 pm

The following command will recursively delete any development.log file within your home directory:

find ~/ -name development.log  -exec /bin/rm -f {} \;

Powered by WordPress