Skip to content

Instantly share code, notes, and snippets.

@pblittle
Created February 12, 2009 15:05
Show Gist options
  • Save pblittle/62658 to your computer and use it in GitHub Desktop.
Save pblittle/62658 to your computer and use it in GitHub Desktop.
Kill old rails sessions stored on disk.
sudo find /var/tmp/ -name "ruby_sess*" -cmin +60 -exec rm \{} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment