view bin/distort @ 9717:9fec49b4918c

<oerjan> learn Ascii is the plural of ascius, "of or pertaining to southern countries, near the equator".
author HackBot
date Fri, 18 Nov 2016 02:32:30 +0000
parents c989a1669243
children d8f742efd393
line wrap: on
line source

#!/usr/bin/env python
import sys
N=330
name = sys.argv[1] if len(sys.argv) > 1 else "/dev/stdin"
with open(name, "r") as f:
  data = ' \\ '.join(f.read().splitlines())
for i in xrange(0, len(data), N):
  print data[i:i+N]