You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
把 get_port_list函数 替换为这个 def get_port_list(port): port_list = [] if '.ini' in port: port_config = open(port,'r') for port in port_config: port_list.append(port.strip()) port_config.close() elif '-' in port: port_start,port_end = port.split('-') for i in range(int(port_start),int(port_end)): port_list.append(i) else: port_list = port.split(',') return port_list
试过-p 0-65535 失败
The text was updated successfully, but these errors were encountered: