Skip to content

Instantly share code, notes, and snippets.

@mimikun
Last active March 7, 2019 13:02
Show Gist options
  • Save mimikun/3e3f7c3a73c71cf442362ee969ed4ee1 to your computer and use it in GitHub Desktop.
Save mimikun/3e3f7c3a73c71cf442362ee969ed4ee1 to your computer and use it in GitHub Desktop.
カウントアップ
c=0; while true; do c=$(expr $c + 1); echo $c; sleep 1; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment