0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
sub check_dir
{
my ($param, $mode) = @_;
$mode ||= 'sr';
unless ( $mode eq 'sc')
{
my $full_path = $config_params{$param};
$full_path =~ /^(.+)\/(.+)$/;
my $put = $1;
while(1)
{
if (-l $full_path)
{
$info->debug("Load param $param = $full_path it is symlink. Readlink...");
$full_path = readlink $full_path;
}
elsif (-d $full_path or -d "$put/$full_path")
{
$info->debug("Load param $param = $full_path. It is directory and it is exists");
last;
}
else
{
$warning->debug("Not valid config. Error parsing param: $param");
exit 1;
}
}
}
else
{
my $full_path = $config_params_sc{$param};
$full_path =~ /^(.+)\/(.+)$/;
my $put = $1;
while(1)
{
if (-l $full_path)
{
$info_sc->debug("Load param $param = $full_path it is symlink. Readlink...");
$full_path = readlink $full_path;
}
elsif (-d $full_path or -d "$put/$full_path")
{
$info_sc->debug("Load param $param = $full_path. It is directory and it is exists");
last;
}
else
{
$warning_sc->debug("Not valid config. Error parsing param: $param");
exit 1;
}
}
}
}
По крайней мере, этот код можно сократить вдвое... И подобное по всей утилите...
Запостил:
SadKo ,
21.02.2011 (Updated 25.03.2018 )
неплохое регулярное выражения для декольте получилось. 🙂