Finding the right information on time can be challenging when working with large files in the terminal. Especially log files, which contain lots of details about the activity of a system. 

file searching in the terminal
File Searching in the Terminal 1

 

Luckily, there are also lots of file-searching tools to cut through unnecessary info and get only the data that interests you. 

We’ll make a quick dive into some of the most basic file-reading tools that we use on a daily basis when handling log files.

Note: the commands have a fragment from their man description added beside them. If you don’t know what man is, try the man command in the terminal to find out.

File Searching in the Terminal

cat

 The most basic command for reading a file from the terminal. It reads files sequentially, writing them to the standard output.

As with most built-in Linux commands, it has several flags that can enhance its functionality. However, it’s frequently used without any of them to display the entire content of a file. Here’s an example:


Category File Searching In The Terminal


It only displays the contents of sample.txt to the standard output. By using it in combination with the pipe “|” operator, it can deliver this output to other terminal commands instead of the standard output.

 

pipe '|'  

“The pipe(8) daemon processes requests from the Postfix queue manager to deliver messages to external commands.”

The pipe operator is used between two commands. As an operator, its function is to pass the first command’s output to the second command’s input. Here’s an example:


Tail File Searching In The Terminal

The pipe operator already comes in handy and lets us filter the sample1.txt. In the first example, it’s combined with the head to display the first line from sample1.txt. The second example it’s self-explanatory, but you should try it out anyway.

 

tail 

“The tail utility displays the contents of file or, by default, its standard input, to the standard output.”

As you saw in the example above, tail can be used to display lines of text from a file, starting from the end of the file upwards. 

In combination with the -f flag, tail can constantly display in the terminal the lines of text that are appended to a file. This is a normal log file behavior; information is constantly added as new events happen in the system. Here’s an example of tail -f :


File Searching In The Terminal

So tail displayed the last 10 lines from sample.log and now waits to display the next lines of text that will be appended.

 

grep 

“The grep utility searches any given input files, selecting lines that match one or more patterns.”

Grep is a powerful and easy-to-use tool for finding the right information inside a given context. The context can be one or more files, and the correct information can be one or more patterns that interest you. Here’s an example:

In this example, I used grep to search for all the contexts in sample.log that contain the ‘EVENT‘ pattern. The response was very fast in this case, where the file had about 360 lines of text. 

You can check how many lines a file has by using cat -n. See how fast a command’s response is by typing time in front of it and then executing it. 

You can also check this simple explanation of the log entry levels (e.g., EVENT) and what they mean here.

Tail and grep are the most useful command combinations when working with log files

Let’s say you monitor the actions related to a specific ID. The logs can have dense information, so you only want those actions displayed and the rest ignored. The following command will do precisely that: tail -1f file_name | grep ’42’

It will display the last line from file_name if ’42’ is present and any other lines (when appended) where ’42’ is found. Tail will run until you interrupt its execution.

To search for a pattern in multiple files, you can type: grep ’42’ file1 file2

To search a file for multiple patterns, type: grep -e ’42’ -e ’43’ file1

This option is most useful when multiple -e options are used to specify multiple patterns.


Grep Files In The Terminal

 

-A,-B, -C flags

Other useful flags for grep are -A and -B. They specify a context to be printed (B) before or (A) after the line that contains the pattern is displayed. You can also use the -C flag, which combines both -A and -B flags.


Grep Flags In The Terminal

 

Many command combinations can be done only with the commands mentioned above, especially with the help of pipe. 

Feel free to try them and see how it goes.

Extra: If you’re on MAC OS, try the following command – say hello world

Stay Updated with the Latest in QA

The world of software testing and quality assurance is ever-evolving. To stay abreast of the latest methodologies, tools, and best practices, bookmark our blog. We’re committed to providing in-depth insights, expert opinions, and trend analysis that can help you refine your software quality processes.

Visit our Blog

Delve deeper into a range of specialized services we offer, tailored to meet the diverse needs of modern businesses. As well, hear what our clients have to say about us on Clutch!