terminal
Welcome to Linux Practice Terminal!
Type "help" to see available commands.
user@linux:~$
Project: Data Processing Pipeline
Build a complete data processing pipeline using cut, sort, uniq, grep, wc, and redirection.
Step 1
Start by examining the sales data file.
Type: cat documents/sales.csv
cat documents/sales.csv
Step 2
Extract the product column from the sales data.
Step 3
Count sales by product: extract products, sort, and count.
Step 4
Filter sales data to show only Widget entries.
Step 5
Count how many Widget sales there are.
Step 6
Advanced: count products sold in the North region.
Step 7
Save Widget sales by region to a file using redirection.