Skip to content

Instantly share code, notes, and snippets.

@moret
Created July 7, 2011 21:53
Show Gist options
  • Save moret/1070636 to your computer and use it in GitHub Desktop.
Save moret/1070636 to your computer and use it in GitHub Desktop.
Remove all gems one-liner
#!/bin/bash
for g in `gem list --no-details --no-versions`; do sudo gem uninstall -aIx $g; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment