https://github.com/sagemathinc/cocalc
Raw File
Tip revision: 74b617a4b5c986a33cc270a0c6a8ff176d404a8d authored by Harald Schilly on 31 March 2021, 14:24:16 UTC
webapp: automatically associate plain text files and open them
Tip revision: 74b617a
s
#!/usr/bin/env python
import os,time

s = "dev/project/start_share.py"
while True:
    print(s)
    os.system(s)
    time.sleep(1)
back to top