Skip to content

Instantly share code, notes, and snippets.

@tukiyo
Created July 9, 2013 06:31
Show Gist options
  • Save tukiyo/5955138 to your computer and use it in GitHub Desktop.
Save tukiyo/5955138 to your computer and use it in GitHub Desktop.
catでテキストファイルを作る ref: http://qiita.com/tukiyo@github/items/5ff17fc98e5cd17a0451
import sys
import time
for num, i in enumerate(range(100)):
sys.stdout.write("\r%d" % num)
sys.stdout.flush()
time.sleep(0.01)
cat > a.py
ここに貼り付け
control-d で終了
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment