Gitiles
Code Review
Sign In
source.supwisdom.com
/
common
/
bash_it
/
57283d72de63059da2f589ce9768956b3a2de0fd
/
.
/
plugins
/
available
/
ruby.plugin.bash
blob: 9ae61a4774a72b6e0221cadfd31c4908a6179264 [
file
] [
log
] [
blame
]
#!/usr/bin/env bash
function
remove_gem
{
gem list
|
grep $1
|
awk
'{ print $1; }'
|
xargs sudo gem uninstall
}