Skip to content

Instantly share code, notes, and snippets.

@tryperl
Created March 9, 2013 02:39
Show Gist options
  • Save tryperl/5122234 to your computer and use it in GitHub Desktop.
Save tryperl/5122234 to your computer and use it in GitHub Desktop.
Created by www.tryperl.com.
#Created by tryperl.com
use strict;
use warnings;
my @out;
while(<STDIN>) {
chomp;
s/\x0D//g;
push(@out, "{$_}");
}
print join(":", @out);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment