Skip to content

Instantly share code, notes, and snippets.

@iwazer
Created July 21, 2011 11:55
Show Gist options
  • Save iwazer/1097047 to your computer and use it in GitHub Desktop.
Save iwazer/1097047 to your computer and use it in GitHub Desktop.
Bashで固定数のループ
# 固定数のループ
for i in {1..100}; do
echo $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment