Skip to content

Instantly share code, notes, and snippets.

@nbibler
Created October 23, 2015 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nbibler/bb05fdb5daf032b60fd7 to your computer and use it in GitHub Desktop.
Save nbibler/bb05fdb5daf032b60fd7 to your computer and use it in GitHub Desktop.
Clean up old Capistrano releases
for dir in `find ./* -maxdepth 1 -type d -name "releases"`; do echo $dir; for release in `ls -t $dir | awk 'NR>5'`; do echo removing $dir/$release; rm -rf $dir/$release; done; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment