摘要: code #!/bin/bash curl haiyou.tian-wang.com &> /dev/null if [ $? -eq 0 ]; then curl_ins_search=1 else curl_ins_search=0 fi echo $curl_ins_search 阅读全文
posted @ 2020-03-17 14:14 anobscureretreat 阅读(351) 评论(0) 推荐(0)
摘要: code import os import time PING_RESULT = 0 NETWORK_RESULT = 0 def DisableNetwork(): ''' disable network card ''' result = os.system(u"netsh interface 阅读全文
posted @ 2020-03-17 13:05 anobscureretreat 阅读(3266) 评论(0) 推荐(1)