在 Perl 中添加默认系统换行符

Add default system newline in Perl

当我将文本附加到文件时,我想为文件添加正确的行结尾:对于 Unix:"\n" 和对于 Windows "\r\n"。但是,我找不到一种简单的方法来做到这一点。这是我能想到的最好的:

use strict;
use warnings;
use Devel::CheckOS ();

my $fn = 'file';
open (my $fh, '<', $fn) or die "Could not open file '$fn': $!\n";
my $first_line = <$fh>;
my $len = length $first_line;
my $file_type = "undetermined";
if ($len == 1) {
    $file_type = "Unix" if $first_line eq "\n";
}
if ($len >= 2) {
    if (substr($first_line, $len - 1, 1) eq "\n") {
        if (substr($first_line, $len - 2, 1) eq "\r") {
            $file_type = "DOS";
        } else {
            $file_type = "Unix";
        }
    }
}
close $fh;
if ($file_type eq "undetermined") {
    $file_type = get_system_file_type();
}
print "File type: $file_type.\n";

sub get_system_file_type {
    return Devel::CheckOS::os_is('MicrosoftWindows') ? "DOS" : "Unix"; 
}

真的有必要做这些检查吗?还是有更简单的方法来做到这一点?

使用 :crlf 句柄,例如 use openuse if:

use if ($^O eq "MSWin32") => open qw(IO :crlf :all);

相关文档:

  • PerlIO 用于 io 层。请注意,此页面指出:

If the platform is MS-DOS like and normally does CRLF to "\n" translation for text files then the default layers are :

unix crlf

所以上面的代码应该是多余的,但这正是你所要求的。

  • perlvar 用于 $^O 变量。

  • open 用于打开 pragma。

  • if 用于有条件地加载模块。