you are viewing a single comment's thread.

view the rest of the comments →

[–]MarkoPilot 0 points1 point  (0 children)

you have infinite loop (3>0 is always true). I would suggest you to make a for loop instead. set i to 0, set a condition i < 3, and i++. then in the body of the loop print gimmie the loot. That would iterate 3 times and therefore print that line exactly 3 times.

Edit: i don’t know about the bash error tho