Skip to content

Commit 9b96d60

Browse files
committed
site deploy
Auto-generated via `{sandpaper}` Source : ce69a15 Branch : md-outputs Author : GitHub Actions <actions@github.com> Time : 2025-11-24 12:18:26 +0000 Message : markdown source builds Auto-generated via `{sandpaper}` Source : c2c2fb4 Branch : main Author : Jesse Johnston <morskyjezek@gmail.com> Time : 2025-11-24 12:17:19 +0000 Message : Merge pull request #290 from bkmgit/patch-5 Use clearer variable name
1 parent 9e57dbd commit 9b96d60

9 files changed

Lines changed: 72 additions & 72 deletions

03-working-with-files-and-folders.html

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

04-loops.html

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aio.html

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

files/my_first_bash_script.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
2-
# This script loops through .txt files, returns the
3-
# file name, first line, and last line of the file
2+
# This script loops through .txt files, returns the file name,
3+
# first line, and last line of the file
44

5-
for file in *.txt
5+
for filename in *.txt
66
do
7-
echo "$file"
8-
head -n 1 "$file"
9-
tail -n 1 "$file"
7+
echo "$filename"
8+
head -n 1 "$filename"
9+
tail -n 1 "$filename"
1010
done

instructor/03-working-with-files-and-folders.html

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)