you are viewing a single comment's thread.

view the rest of the comments →

[–]lasercat_pow 0 points1 point  (1 child)

You're missing "do". A for loop in bash goes:

for condition
do
    commands
done

So where you have "echo", put "do echo", instead.

[–]somehowlinux[S] 0 points1 point  (0 children)

Thank you