Files
caltool/crnl.pl
2017-08-26 08:54:02 -04:00

7 lines
105 B
Raku

while(<>) {
chomp($_);
if(substr($_, length($_)-1, 1) eq "\r") {
chomp($_);
}
print("$_\r\n");
}