Hi All,I am trying to run the Command Line Tool from perl. Find below the part of code i am using:$set_cmd = "iwrlog -m" . "$cur_dir/$orig_filename";print "Command to get versions is $set_cmd\n";`$set_cmd`;Script is running without the errors but CLT iwrlog is not initiating.Does anyone having any clue? Thnx in advance.TS 6.5 Unix
...use TeamSite::Config;my $iwhome = TeamSite::Config::iwgethome();my $set_cmd = qq($iwhome/bin/iwrlog -m $cur_dir/$orig_filename);print "CMD: $set_cmd";print qx($set_cmd 2>&1);...
print