天天看点

How to delete rails log files

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

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

继续阅读