dwww Home | Show directory contents | Find package

#!/usr/bin/python

import sys
for i in sys.stdin.readlines():
  line = i.strip()
  if (line.startswith("% ")):
    pass
  elif (line == ""):
    pass
  elif (line == "\n"):
    pass
  else:
    print line

Generated by dwww version 1.15 on Thu May 23 18:30:39 CEST 2024.