view bin/cAt @ 6753:f52f7656634d

<zgrep> ` echo \'echo "${1# = }" >> "${1%% = }"\' > bin/append
author HackBot
date Wed, 10 Feb 2016 04:01:56 +0000
parents a5d6333f9e41
children
line wrap: on
line source

#!/usr/bin/env python
import sys
sys.stdout.write ((lambda s: "".join([(s[i].upper() if i%2!=0 else s[i].lower()) for i in range(len(s)) ]))(open("/dev/stdin").read()))