From 5c85a77691ceb368ade05f39e20bdb82e4007a5f Mon Sep 17 00:00:00 2001 From: Benson Muite Date: Wed, 25 Sep 2024 19:01:53 +0300 Subject: [PATCH] Make printed output consistent with what is obtained --- episodes/05-loop.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/episodes/05-loop.md b/episodes/05-loop.md index 5a76cd474..d8c0c18ab 100644 --- a/episodes/05-loop.md +++ b/episodes/05-loop.md @@ -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 ``` @@ -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 ``` @@ -685,8 +686,8 @@ it produces one line of output every five seconds or so: ```output NENE01729A.txt -NENE01729B.txt NENE01736A.txt +NENE01751A.txt ... ```