bundle show [GEM名]
でフルパス取得できるので、peco使う場合、こんなのでいいではないか
cd $(bundle show | sed -e '1d' | cut -d'*' -f2 | cut -d' ' -f2 | peco | xargs bundle show)
【追記】
以下でも同様のことが実現できるしコードが短い、 @masutaka thx!
cd $(bundle show --paths | peco)
Go to list of users who liked
More than 5 years have passed since last update.
bundle show [GEM名]
でフルパス取得できるので、peco使う場合、こんなのでいいではないか
cd $(bundle show | sed -e '1d' | cut -d'*' -f2 | cut -d' ' -f2 | peco | xargs bundle show)
【追記】
以下でも同様のことが実現できるしコードが短い、 @masutaka thx!
cd $(bundle show --paths | peco)
Register as a new user and use Qiita more conveniently
Go to list of users who liked