Advanced Command-1
1️⃣ grep — Search Text in Files
What grep does
grep searches for specific words or patterns inside files.
Syntax:
grep "pattern" file
Example:
grep ERROR app.log
Output:
[ERROR] Database connection
linux-deep-concept.hashnode.dev10 min read