我有一个包含 80 行的文件 test.txt。例如,在 perl 脚本中,我想将 60 行替换为另一行。
#!/var/www/cgi-bin/rootperl -w
my $path="/var/www/cgi-bin/test.txt";
open(FICH,">>",$path) || die("Ouverture impossible");
my @input = readline();
chomp(@input);
print FICH "@input[0]\n";
print FICH "@input[1]\n";
print FICH "@input[2]\n";
如何将特定行(例如第 60 行)替换为@input[0]
?例子
@input[0] = "abcd";
第 60 行是"SSID=test"
我想要的"abcd"