Skip to content

Instantly share code, notes, and snippets.

@blocknotes
Last active July 31, 2020 07:37
Show Gist options
  • Save blocknotes/92001f96b1896ec0a0c01be70f034fc9 to your computer and use it in GitHub Desktop.
Save blocknotes/92001f96b1896ec0a0c01be70f034fc9 to your computer and use it in GitHub Desktop.
# Search SEARCH_WORD in all ruby files of a project (gems included) - using ag - The Silver Searcher
ag SEARCH_WORD --ruby `bundle list --paths | grep '^/'`
# Search SEARCH_WORD in all javascript files of a project (gems included)
ag SEARCH_WORD --js `bundle list --paths | grep '^/'`
# ---
# Old version
ag SEARCH_WORD --ruby `bundle show --paths | grep '^/'`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment