http://qs1969.pair.com?node_id=67878


in reply to Quickie code question

The escaped \011 and \015 are octal character codes. See perldoc perldata under Scalar Value Constructors for more information about these.

Incidentally, to validate this, try:
perl -e 'print 011 . "\n"'
It won't print what you're expecting, I bet.

-marius