Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 39558
1
#!/usr/bin/env python
2
3
def cmd(s):
4
print s
5
if os.system(s):
6
sys.exit(1)
7
cmd("smc-stop")
8
cmd("smc-start")
9
10