试图提取一条符合附件的线的一部分
use strict;
use warnings;
# Set path for my.txt and extract datadir
my @myfile = "C:ackupsMySQLmy.txt";
my @datadir = "";
open READMYFILE, @myfile or die "Error, my.txt not found.
";
while (<READMYFILE>) {
# Read file and extract DataDir path
if (/C:ackups/gi) {
push @datadir, $_;
}
}
# ensure the path was found
print @datadir . "
";
基本上首先试图确定我手提的档案的位置。 接下来想读一下,把部分线拉上。 错误是:
Unrecognized escape m passed through at 1130.pl line 17.
我请大家看。 在Perl的配对线之后,我怎么能 gr碎多个线子?,了解如何阅读档案和在档案中配对一线,然而,不能100%确保我能以最好的方式行使这一权利。 我也似乎产生错误:
Error, my.txt not found.
但是,档案确实存在于文件夹C中: