-
-
Notifications
You must be signed in to change notification settings - Fork 87
Open
Labels
type:clarificationSuggest change for make lesson clearerSuggest change for make lesson clearer
Description
What is the problem?
The code on the Loop image is wrong. It is currently,
for filename in *.dat
do
echo cp "$filename" backup_"$filename"
done
When it should be
for filename in *.dat
do
echo "$filename"
cp "$filename" backup_"$filename"
done
Location of problem (optional)
Line 175 {alt='For Loop in Action'}
https://librarycarpentry.org/lc-shell/04-loops.html#for-loop-exercise
Metadata
Metadata
Assignees
Labels
type:clarificationSuggest change for make lesson clearerSuggest change for make lesson clearer