Gitiles
Code Review
Sign In
source.supwisdom.com
/
common
/
bash_it
/
3fc60b5358dae05d89327ce1a52f6013eafee537
/
.
/
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
}