Files
wino-mail-dtkqt/fix_cmake.py
T

6 lines
188 B
Python
Raw Normal View History

lines = open('CMakeLists.txt').readlines()
print("Total lines:", len(lines))
# Let's look at lines 80-90 (0-indexed 80 to 90)
for i in range(80, 90):
print(f"{i+1}: {repr(lines[i])}")