16 lines
432 B
Python
16 lines
432 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"
|
|
|
|
# 文件起始序号
|
|
sart_index_num = 101
|
|
# 起始监听端口号
|
|
start_listen_port = 5655
|
|
# 目标ip
|
|
target_ip = "10.0.0.2"
|
|
file_total_count = 60
|
|
|
|
writ_json_file(root_path, target_ip, sart_index_num, start_listen_port, file_total_count)
|
|
|