2

I want to extract data from large group of files based on a regular expression.

Is their an application, script, batch or terminal command to do this?

guntbert
  • 13,134
malhobayyeb
  • 1,422
  • If you want to extract data from regular expressions, I suggest you use regular expression tools, this will help you extract valid data from source code faster You can check this article:https://helpcenter.octoparse.es/hc/es/articles/360040461914-Herramienta-de-Expresi%C3%B3n-Regular-de-Octoparse – Melia Feb 11 '20 at 08:38

1 Answers1

2

grep should be what you want. It is very powerful. You can search multiple files for a pattern and you can even select the matcher.

There are many many options so you should really look up its man page I've linked you to.

Octavian Helm
  • 14,355