Skip to content

Instantly share code, notes, and snippets.

@dushmis
Created August 20, 2013 19:21
Show Gist options
  • Save dushmis/6285969 to your computer and use it in GitHub Desktop.
Save dushmis/6285969 to your computer and use it in GitHub Desktop.
How to write a loop in unix shell
for i in `seq 1 5`;
do
echo $i;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment