Page MenuHomec4science

getTitles.py
No OneTemporary

File Metadata

Created
Thu, Feb 20, 05:59

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