Skip to content

Instantly share code, notes, and snippets.

@junjizhi
Created December 20, 2013 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save junjizhi/8056911 to your computer and use it in GitHub Desktop.
Save junjizhi/8056911 to your computer and use it in GitHub Desktop.
For loop in shell
NUM=$1
#equel to for (int i=1; i<num; i++) in c/c++, java
for i in $(seq 1 $NUM);
do
echo $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment