ag silver searcher look ahead and look behind

A super useful tool when doing PR’s or checking your own work during a big refactor is the silver searcher. Its a super fast command line based searching tool. You just run ag “<search term>” to search for your search term. This will list out e…


This content originally appeared on DEV Community and was authored by Waylon Walker

A super useful tool when doing PR's or checking your own work during a big refactor is the silver searcher. Its a super fast command line based searching tool. You just run ag "<search term>" to search for your search term. This will list out every line of every file in any directory under your current working directory that contains a match.

Ahead/Behind

It's often useful to need some extra context around the change. I recently reviewed a bunch of PR's that moved schema from save_args to the root of the dataset in all yaml configs. To ensure they all made it to the top level DataSet configuraion, and not underneath save_args. I can do a search for all the schemas, and ensure that none of them are under save_args anymore.

ag "schema: " -A 12 -B 12


This content originally appeared on DEV Community and was authored by Waylon Walker


Print Share Comment Cite Upload Translate Updates
APA

Waylon Walker | Sciencx (2022-02-08T14:52:44+00:00) ag silver searcher look ahead and look behind. Retrieved from https://www.scien.cx/2022/02/08/ag-silver-searcher-look-ahead-and-look-behind/

MLA
" » ag silver searcher look ahead and look behind." Waylon Walker | Sciencx - Tuesday February 8, 2022, https://www.scien.cx/2022/02/08/ag-silver-searcher-look-ahead-and-look-behind/
HARVARD
Waylon Walker | Sciencx Tuesday February 8, 2022 » ag silver searcher look ahead and look behind., viewed ,<https://www.scien.cx/2022/02/08/ag-silver-searcher-look-ahead-and-look-behind/>
VANCOUVER
Waylon Walker | Sciencx - » ag silver searcher look ahead and look behind. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/02/08/ag-silver-searcher-look-ahead-and-look-behind/
CHICAGO
" » ag silver searcher look ahead and look behind." Waylon Walker | Sciencx - Accessed . https://www.scien.cx/2022/02/08/ag-silver-searcher-look-ahead-and-look-behind/
IEEE
" » ag silver searcher look ahead and look behind." Waylon Walker | Sciencx [Online]. Available: https://www.scien.cx/2022/02/08/ag-silver-searcher-look-ahead-and-look-behind/. [Accessed: ]
rf:citation
» ag silver searcher look ahead and look behind | Waylon Walker | Sciencx | https://www.scien.cx/2022/02/08/ag-silver-searcher-look-ahead-and-look-behind/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.