Skip to content

Commit

Permalink
Correct line length
Browse files Browse the repository at this point in the history
  • Loading branch information
cknuepfer committed Nov 10, 2023
1 parent c92c8ae commit 1f3e2eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions episodes/05-loop.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ In this example, the list is three filenames: `basilisk.dat`, `minotaur.dat`, an
Each time the loop iterates, we first use `echo` to print the value that the variable
`$filename` currently holds. This is not necessary for the result, but beneficial for us here to
have an easier time to follow along.
Next, we will run the `head` command on the file currently referred to by `$filename`. The first time through the loop,
`$filename` is `basilisk.dat`.
Next, we will run the `head` command on the file currently referred to by `$filename`.
The first time through the loop, `$filename` is `basilisk.dat`.
The interpreter runs the command `head` on `basilisk.dat`
and pipes the first two lines to the `tail` command,
which then prints the second line of `basilisk.dat`.
Expand Down

0 comments on commit 1f3e2eb

Please sign in to comment.