$
Linux Practice
Practice
Tutorials
English
한국어
日本語
中文
terminal
Welcome to Linux Practice Terminal!
Type "help" to see available commands.
user
@linux:
~
$
Capstone: Full System Workflow
Reset Lesson
Combine everything you learned: fetch data, process text, manage files, and monitor processes.
Step 1
Step 1: Fetch user data from the API and save it to a file.
Type: curl -o api_data.json http://api.example.com/users
curl -o api_data.json http://api.example.com/users
Step 2
Step 2: Extract email addresses from the saved data.
Step 3
Step 3: Extract just the names using grep and sed to clean up the JSON formatting.
Step 4
Step 4: Save the extracted names to a file using tee (still display on screen).
Step 5
Step 5: Count how many names were saved.
Step 6
Step 6: Check if the backend server (node) is still running.
Step 7
Step 7: Review all files in your working directory to see what you created.