Grep Tool

Windows Grep is a free search tool for Windows that allows you search the text of multiple files at the same time. Its interface, although simple, is very practical and, thanks to its assistant, it is really easy to perform searches. GrepWin is a simple search and replace tool which can use regular expressions to do its job. This allows to do much more powerful searches and replaces. In case you're not familiar with regular expressions, we have a very short regular expression tutorial for you. GrepWin adds an entry to the shell context menu to easily search selected folders.

grep is a very powerful and useful tool used in Linux and Unix operating systems. It is mainly used to match and print specified text in given text files in different formats. grep also have subversions like egrep which will provide extended functionality like regular expressions. In this tutorial, we will learn how to download, install and use grep and egrep for Windows operating systems.

grep is a Unix or Linux tools provided as opensource. Hopefully, it is also provided for Windows operating systems and platform by GNU. We can download the grep setup file from the following page.

Or simply we can download from the following link directly. But keep in mind that when new versions have arrived following link will be absolute or old.

We will start the installation by clicking to the gre-2.5.4-setup.exe We can see that the current version of the grep we will install is 2.5.4.

This may require some Administrative privileges. So we will provide the Admin privileges by click Yes to the dialog box.

Below the Setup Start Screen of the GNU Grep

Grep tool for windows 10

Grep Tool Linux

We will accept the license agreement by clicking I accept the agreement like below.

We will set the destination location to install grep where the default is C:Program FilesGnuWin32.

We will select the components we want to install. Full Installation will install both Binaries and Documentation otherwise we can select or deselect these components easily.

We will set the Start Menu Name for the GNU Grep like below.

Here are sme additional tasks like Creating Document Shortcuts in Start Menu Folder and Download Sources.

Now we can start the installation with the specified configuration. We will just click to the Install button like below.

As grep is a very tiny tool it will install quickly and we will see the following installation completed successfully screen.

As specified configuration the grep is installed to the C:Program FilesGnuWin32 under to the binary bin directory. In order call and use grep command from the MS-DOS or command line we need to add this path to the environment variables PATHvariable. We can also see the executable files named egrep, fgrep and grep in the following screen.

Free

We set path different ways but the most practical one is using command line too setx like below.

Then we can check by opening a new command line or MS-DOS windows and run grep command like below.

We can see that grep command expects some option and file in order to work.

grep command in Windows is very similar to the Linux version. But we may need some helpful information about the usage and options. We can print help information with the --help option like below.

Grep Tool

We can grep specified word or text just by providing the grep term and the file we want to grep. In this example grep term is ssh and the file we want to look is named config.txt. config.txt content is like below which is and ssh_config file from an Ubuntu box.

Grep Tool Online

We will run the following command