This commit is contained in:
Ilia Rostovtsev
2020-07-24 11:29:59 +03:00
parent 917e30d04b
commit a1ad0504f0

View File

@ -308,7 +308,9 @@ if ($file !~ /^\// && $file !~ /\|\s*$/) {
$file = "$uinfo[7]/$file";
}
}
open(FILE, "<".$file);
my $h;
$h = "<" if ($file =~ /^\// && $file !~ /\|\s*$/);
open(FILE, "$h".$file);
while(<FILE>) {
s/\r|\n//g;
next if (/^#/);