#!/usr/local/bin/perl -w use strict; sub padCReturn() { while () { chomp; print $_ . "\r\n"; } } &padCReturn(); exit;