DevOps Linux Interview Questions grep command

preview_player
Показать описание
This video covers the latest interview questions on DevOps & Linux. Grep command to find the number of occurrences.

📹📹 *Popular Playlist* 📹📹

🏛️ *Courses Offer By Java Home Cloud* 🏛️

📹 *Udemy Courses* 📹

Рекомендации по теме
Комментарии
Автор

Well
With awk => awk '/503/ {count++} END {print count } ' filename

With grep => grep -c 503 filename

arunprashanth
Автор

Grep -c "503" filename | wc -l

varaprasadpallamreddy
Автор

What if a line contains more than one searched string?

saurabhchandra
visit shbcf.ru