

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 3
click for more info
Not enough gems
Cost: 6 gems
1: Help
incomplete
2: Flags
incomplete
3: Positional Arguments
incomplete
4: Exit Codes
incomplete
5: Standard Output
incomplete
6: Standard Error
incomplete
7: Standard In
incomplete
8: Piping
incomplete
9: Unix Philosophy
incomplete
This lesson's interactive features are locked, please to keep using them
You might not even know it yet, but you're already a pro at using standard output. You've been using it since you started the first exercise in this course.
"Standard Output", usually called "standard out" or stdout, is the default place where programs print their output. It's just a stream of data that prints to your terminal, but we'll talk later about how it can be redirected to other places.
All programming languages have a simple way to print to stdout. In Python, it's the print function:
print("Hello world")
# Hello world
In a shell, it's the echo command:
echo "Hello world"
# Hello world
Use the grep command to print all the lines that contain the word "Marshal" in the worldbanc/private/transactions/2020.csv file to stdout.
Submit the shell checks.