shell
bash, loop
een
2020. 8. 3. 17:33
#!/bin/bash
echo "Bash version ${BASH_VERSION}..."
for i in {0..10..2}
do
echo "Welcome $i times"
done