19 lines
464 B
Python
19 lines
464 B
Python
from proxy_line.write_file import writ_json_file
|
|
|
|
if __name__ == '__main__':
|
|
root_path= "/Users/leonbob/workspace/project/langtu/lt/jsq/server-setting/new"
|
|
# 目标起始 ip
|
|
target_ip = "172.16.0.11"
|
|
# 文件起始序号
|
|
sart_index_num = 161
|
|
# 起始监听端口号
|
|
start_listen_port = 5715
|
|
# 文件总数
|
|
file_total_count = 20
|
|
|
|
writ_json_file(root_path, sart_index_num, file_total_count, target_ip, start_listen_port)
|
|
|
|
|
|
|
|
|