Upload files to "/"

This commit is contained in:
TED A. ⭕ 2023-11-06 23:54:05 +00:00
parent 0380080e92
commit 9575f68b4f
1 changed files with 6 additions and 0 deletions

6
linescript_for_onetab.py Normal file
View File

@ -0,0 +1,6 @@
with open("lines") as file_in:
lines = []
print("let lines = [")
for line in file_in:
print('"' + line.split(" | ")[0] + '", ')
print("];")