Search Text In Files In Linux

Search Text In Files In Linux

Linux is a very flexible operating system that provides a lot of different actions. Searching text in multiple files in different ways is one of them. There are different commands that can be used to search multiple files in multiple directories. Search Text In Files The grep command is the most popular and useful command … Read more

List Directories In Linux

List Directories In Linux

Directories or folders are used to store different items like files, directories, folder data, etc. While working with these items we may need to list them especially directories. There are different commands those can be used to list directories. In this tutorial, we will learn how to list directories in Linux. List Directories with ls … Read more

Grep Search Case Insensitive String – Ignore Case

Grep Search Case Insensitive String - Ignore Case

The grep tool is used to search and match the specified Patterns in a file or string. While searching and matching the upper case and lower case letters differ and do not match the upper case pattern with the lower case string. This is called case sensitivity. But the case sensitivity can be disabled and … Read more

Print Line Number For Grep Command

Print Line Number For Grep Command

grep is a popular tool in order to search and find a given term in files. grep can search multiple files at the same time and match using regular expressions etc. While searching files the matched lines can be printed to the screen with the grep command. In this tutorial, we will examine different ways … Read more