您可以使用一系列统称为 -X 测试的测试运算符,在 Perl 中快速测试某些功能。例如,要对文件的各种权限进行快速测试,您可以使用如下脚本:`#/usr/bin/perl my $file = "/usr/test/file1.txt"; my (@description, $size); if (-e $file) { push @description, 'binary' if (-B _); push @description, 'a socket' if (-S _); push @description, 'a text file' if (-T _); push @description, 'a block special file' if (-b _); push @description, 'a character special file' if (-c _); push @description, ... 阅读更多