Skip to content

Instantly share code, notes, and snippets.

@rupakg
Created March 8, 2013 06:26
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 rupakg/5114592 to your computer and use it in GitHub Desktop.
Save rupakg/5114592 to your computer and use it in GitHub Desktop.
Uninstall several gems at one shot
#!/bin/sh
# create a list of all gems or grep
gem file > u.txt
# edit u.txt and remove gems you dont want to uninstall
for u in `cat u.txt`; do echo $u; done | cut -d" " -f1 | xargs gem uninstall -aIx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment