Skip to content

Instantly share code, notes, and snippets.

@tors
Forked from kennethkalmer/clear-rails-logs.sh
Created November 26, 2010 16:35
Show Gist options
  • Save tors/716929 to your computer and use it in GitHub Desktop.
Save tors/716929 to your computer and use it in GitHub Desktop.
#!/bin/bash
#
# Find all the rails projects from this directory down and clear their log
# files to save some space.
#
base=`pwd`
for path in `find $base -type f -path '*/config/environment.rb'`
do
rails_root=`echo $path | xargs dirname | xargs dirname`
echo "Found RAILS_ROOT in $rails_root"
old_pwd=`pwd`
cd $rails_root
rake log:clear
cd $old_pwd
echo
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment