Bash C, как для петли

#!/bin/bash
# Display message 5 times
for ((i = 0; i < 5; i++)); do
  echo "Welcome $i times."
done
Tukusej’s Sirs