Skip to content

Instantly share code, notes, and snippets.

@key-amb
Created March 15, 2016 11:52
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 key-amb/794fbb2f1016d46f0bc0 to your computer and use it in GitHub Desktop.
Save key-amb/794fbb2f1016d46f0bc0 to your computer and use it in GitHub Desktop.
Personal Shell Cookbooks

だいたい bash

1000 回繰り返しつつ 100 回ごとに回数表示

for i in $(seq 1 1000); do
  if (( $i % 100 == 0 )); then echo $i; fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment