- or download this
use Config::Simple;
$cfg = new Config::Simple();
...
{
print " FTP$ct value: ".$cfg->param("FTP$ct.targetIP")."\n";
}
- or download this
[FTP1]
targetIP=1.1.1.1
[FTP2]
targetIP=10.10.10.10
- or download this
use Config::Simple;
$cfg = new Config::Simple();
...
print " FTP$ct value: ".$cfg->param("FTP$ct.targetIP")."\n";
$ct++;
print " FTP$ct value: ".$cfg->param("FTP$ct.targetIP")."\n";