Searching related files
Searching a category of files can be done in many ways. For example, a script that searches for a phrase in all GitHub Actions workflows on a computer could take only around a dozen lines of code in most languages. The best way overall I’ve found so far is with rg (ripgrep) in a bash script. It’s great because writing it doesn’t take long, the output formatting is useful, and it’s easy to adjust the output without changing the script....