I need to run iwextattr for all the generated files in a particular folder.Can anyone give me some hint regarding how to do this using perlscript or where can I get some sample scripts.TIAregards,Mav
Thanks Kalra,Suppose I want to simply run iwextattr -l attribute command from a perlscript.Then which Perl module to use?I have very little idea about TeamSite perl modules.is there a documentation for this?Regards,Mav
$set_cmd = "$iwhome/bin/iwextattr -l $filevPath";print "Command to list attributes is $set_cmd\n";`$set_cmd`;
Hi Mav,To run a CLT, you dont need to have to use any perl module. $set_cmd = "$iwhome/bin/iwextattr -l $filevPath";print "Command to list attributes is $set_cmd\n";`$set_cmd`; Please note, it is not an apostrophe sign.
my $results = qx($set_cmd 2>&1);
system($set_cmd 2>&1);
Totally Agree with Fish... []