13
stisch
6y

ripgrep is AMAZING!

It's a CLI tool to search your code quickly, and here's the kicker: it uses your . gitignore to only index your source.

It is fast, powerful, and highly flexible and I'm MARRYING IT

`brew install ripgrep`
`rg 'your new bicycle' -g '!*.yml' `

Comments
  • 1
    Got a screenshot of your console output?
  • 1
    @growling nope but I found this
  • 3
    rg instead of ag/grep
    fd instead of find
    httpie instead of curl

    Purists may frown at replacing old tools just for the sake of replacing, but these three really have better performance.
  • 2
    @karelian never heard of httpie.. I'll check it out! Thanks for the tip :)
Add Comment