How do I use grep command in Bash?
The grep command searches the given files for lines containing a match to a given pattern list. In other words, use the grep command to search words or strings in a text files. When it finds a match in a file, it will display those line on screen.
grep examples in bash
The syntax is as follows:
grep 'word-to-search' filename egrep 'word1|word2' /path/to/filename
Examples
Search for word vivek in /etc/passwd file, enter:
grep vivek /etc/passwd
Sample outputs:
vivek:x:500:100::/home/vivek:/bin/bash
Search for word vivek or priyanka in /etc/passwd file, enter:
egrep -w 'vivek|priyanka' /etc/passwd
Search all files in directory /nas/project for words ‘main’:
egrep -R 'main' *
OR limit search to word only
egrep -Rw 'main' *
Highlight words with color:
egrep --color -R 'main' *
Recommend readings:
- How To Use grep Command In Linux / UNIX
- Search Multiple Words / String Pattern Using grep Command
- Quick Shell Tip: Remove grep command while grepping something using ps command
- Search Linux / UNIX log files smartly for an alert or warning error
- See all grep command examples in our blog or FAQ section.
🐧 0 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |