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

Make printed output consistent with what is obtained #1467

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Changes from all 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
13 changes: 7 additions & 6 deletions episodes/05-loop.md
Original file line number Diff line number Diff line change
Expand Up @@ -605,10 +605,11 @@ $ for datafile in NENE*A.txt NENE*B.txt

```output
NENE01729A.txt
NENE01729B.txt
NENE01736A.txt
NENE01751A.txt

...
NENE02043A.txt
NENE02040B.txt
NENE02043B.txt
```

Expand All @@ -626,10 +627,10 @@ $ for datafile in NENE*A.txt NENE*B.txt

```output
NENE01729A.txt stats-NENE01729A.txt
NENE01729B.txt stats-NENE01729B.txt
NENE01736A.txt stats-NENE01736A.txt
NENE01736A.txt stats-NENE01729A.txt
NENE01751A.txt stats-NENE01729A.txt
...
NENE02043A.txt stats-NENE02043A.txt
NENE02040B.txt stats-NENE02040B.txt
NENE02043B.txt stats-NENE02043B.txt
```

Expand Down Expand Up @@ -685,8 +686,8 @@ it produces one line of output every five seconds or so:

```output
NENE01729A.txt
NENE01729B.txt
NENE01736A.txt
NENE01751A.txt
...
```

Expand Down