You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _episodes/04-loops.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ $ for filename in ?.txt
51
51
> cp "$filename" backup_"$filename"
52
52
> done
53
53
~~~
54
-
{: .bash}
54
+
{: .language-bash}
55
55
56
56
~~~
57
57
a.txt
@@ -136,7 +136,7 @@ The shell itself doesn't care what the variable is called.
136
136
> ____ __ _ _______
137
137
> ____
138
138
> ```
139
-
> {: .bash}
139
+
> {: .language-bash}
140
140
>
141
141
> > ## Solution
142
142
> > ```
@@ -147,7 +147,7 @@ The shell itself doesn't care what the variable is called.
147
147
> > tail -n 1 "$file"
148
148
> > done
149
149
> > ```
150
-
> > {: .bash}
150
+
> > {: .language-bash}
151
151
> {: .solution}
152
152
{: .challenge}
153
153
@@ -179,6 +179,6 @@ This is our first look at loops. We will run another loop in the
179
179
> > tail -n 1 $file
180
180
> > done
181
181
> > ```
182
-
> > {: .bash}
182
+
> > {: .language-bash}
183
183
> Download/copy [my_first_bash_script.sh](https://raw.githubusercontent.com/LibraryCarpentry/lc-shell/gh-pages/files/my_first_bash_script.sh). For more on Bash scripts, see [Bash Scripting Tutorial - Ryans Tutorials](https://ryanstutorials.net/bash-scripting-tutorial/).
0 commit comments