Page MenuHomec4science

getTitles.py
No OneTemporary

File Metadata

Created
Wed, Nov 27, 06:23

getTitles.py

#!/usr/bin/python3
import sys
lines = open(sys.argv[1],'r')
for l in lines:
l2 = l.strip(' "\t,\n')
if l2.startswith('#'):
print( l2 )

Event Timeline