terminal
Welcome to Linux Practice Terminal!
Type "help" to see available commands.
user@linux:~$
Project: Log Analysis
Apply all your skills in a real-world log analysis scenario.
Step 1
Create the project structure: analysis/reports directory.
Type: mkdir -p analysis/reports
mkdir -p analysis/reports
Step 2
Create a log file with an error entry.
Step 3
Append an info entry to the log.
Step 4
Append another error entry to the log.
Step 5
Extract all ERROR lines to a report file.
Step 6
View the error report to verify.