view bin/thanks @ 3678:e4904d8fb386

<kmc> printf \'#!/usr/bin/env python\\nimport sys\\nimport unicodedata\\n\\nprint unicodedata.lookup(sys.argv[1]).encode("utf-8")\\n\' > bin/unicode && chmod +x bin/unicode
author HackBot
date Mon, 09 Sep 2013 22:56:08 +0000
parents c216e32f5e2e
children
line wrap: on
line source

#!/usr/bin/perl
$_ = (join " ", @ARGV) || `words`; s/^\s+|\s+$//g; print "Thanks, $_. "; if (/[aeiouyAEIOUY]/) { s/^[^aeiouyAEIOUY]*/Th/; } else { s/^./T/; } print "$_.";