Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 04-pipefilter.md to reflect current episode structure #1456

Merged
merged 4 commits into from
Apr 12, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions episodes/04-pipefilter.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,18 @@ exercises: 10

::::::::::::::::::::::::::::::::::::::: objectives

- Explain the advantage of linking commands with pipes and filters.
- Combine sequences of commands to get new output
- Redirect a command's output to a file.
- Construct command pipelines with two or more stages.
- Explain what usually happens if a program or pipeline isn't given any input to process.
- Explain the advantage of linking commands with pipes and filters.

::::::::::::::::::::::::::::::::::::::::::::::::::

:::::::::::::::::::::::::::::::::::::::: questions

- How can I combine existing commands to do new things?
- How can I combine existing commands to produce a desired output?
- How can I show only part of the output?
- How can I combine existing commands to do new things? ( -> pipes)
bkmgit marked this conversation as resolved.
Show resolved Hide resolved

::::::::::::::::::::::::::::::::::::::::::::::::::

Expand Down
Loading