delete rails sessions on linux
By default Rails creates session files under {RAILS_ROOT}/tmp/session
Use this script to remove sessions more than a day old. You may add it to cron to automate.
find . -name “ruby_sess*” -ctime +1 -exec rm -f \{} \;
Tags: rails, ruby on rails
`


on September 20th, 2007 at 12:24 am
I got a missing argument error message with the find command above.
This worked for me:
find . -name “ruby_sess*” -ctime +1 -exec rm -f {} \;