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
Hi @scottcpeterson, I've reopened this issue as I think what you've pointed out about the image not matching the lesson makes sense and is worth resolving - we should update the image so that it more closely matches the code in the lesson.
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
The text was updated successfully, but these errors were encountered: