7 lines
181 B
Python
7 lines
181 B
Python
if __name__ == '__main__':
|
|
start_index = 161
|
|
end_index = 180
|
|
for i in range(start_index, end_index + 1):
|
|
print(f"nohup ./forward -c {i}.json > {i}.log 2>&1 &")
|
|
|