Skip to content

Instantly share code, notes, and snippets.

@gburgett
Created August 1, 2022 18:25
Show Gist options
  • Save gburgett/04130523e8303ad7eb7bf0a1aa75826c to your computer and use it in GitHub Desktop.
Save gburgett/04130523e8303ad7eb7bf0a1aa75826c to your computer and use it in GitHub Desktop.
Bundle Grep
#! /usr/bin/env bash
bundle list | \
awk '{ print $2 }' | \
sed '1d;$d' | \
xargs -I{} bundle show {} 2>/dev/null | \
xargs -I {} rg "$@" {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment