toutiao/stop.py
2019-01-04 16:42:23 +08:00

9 lines
235 B
Python
Executable File

#! /usr/bin/python3
import glob
import os
if __name__ == "__main__":
for p in glob.glob("./*"):
if os.path.isdir(p):
bn = os.path.basename(p)
os.system("cd {0} && screen -X -S {0} quit ".format(bn))