Update exam1.md

هذا الالتزام موجود في:
2025-09-09 18:11:24 +00:00
الأصل 736e9f198d
التزام 6cd9324c54

عرض الملف

@@ -128,6 +128,25 @@ b) Authentication & Account Management:
c) Project Management:
List Ghaymah projects. screenshot the output.
### **6. Ghaymah Cloud Platform Integration (15 marks)**
a) Analyze the following complex command and answer the questions below:
```
curl -s https://logs.ghaymah.systems/sample.log | grep "ERROR" | awk '{print $1, $4}' | sort | uniq -c | sort -nr | head -5 > top_errors.txt && cat top_errors.txt | mail -s "Top 5 System Errors" admin@ghaymah.systems
```
1. List each command in the pipeline and explain its specific function
2. Explain what the && operator does in this context
3. Explain what does this command will output once it's run, please make a hypothetical scenario