Hi,
At the beginning of my perl script, i've written the following line to use Tivoli commands under unix and it works fine...
use Shell qw(wcrtadmin wassignop wpostzmsg wsndnotif wdel);
I've create a variable..
$command = "wcrtadmin -r user"
The problem is that I don't know how to evaluate the content of $command
With bash, I would have done:
eval $command
I don't know how to do the same with Perl....!
At the beginning of my perl script, i've written the following line to use Tivoli commands under unix and it works fine...
use Shell qw(wcrtadmin wassignop wpostzmsg wsndnotif wdel);
I've create a variable..
$command = "wcrtadmin -r user"
The problem is that I don't know how to evaluate the content of $command
With bash, I would have done:
eval $command
I don't know how to do the same with Perl....!