2023-07-25 23:59:27 +08:00

14 lines
268 B
Python

import os
import platform
from time import time
import sys
t = 'taskkill -f -t -im '
def Linux():
system = platform.system()
if system == 'Linux':
pass
elif system == 'Windows':
os.system(t + 'client.exe')
os.system()