Skip to content

Instantly share code, notes, and snippets.

@quickgrid
Created April 1, 2016 05:45
Show Gist options
  • Save quickgrid/9e995961e20fa26f1d6ec9661bc9f441 to your computer and use it in GitHub Desktop.
Save quickgrid/9e995961e20fa26f1d6ec9661bc9f441 to your computer and use it in GitHub Desktop.
Bash for loop example.
#!/bin/bash
#I will print in loop
for (( i = 0; i < 5; i++ ))
do
echo "hello word"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment