today update

This commit is contained in:
dengrb1
2023-07-25 23:59:27 +08:00
committed by GitHub
parent 994d4cc179
commit fa115b8b32
9 changed files with 57 additions and 7 deletions

14
没有使用/taskkill.pyw Normal file
View File

@@ -0,0 +1,14 @@
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()