Hi,
I want to create a file with the name thats passed from a variable. With the below code the file is not created. Here I want to create a file with the name testing.txt. Can some lemme know wer am I going wrong.
$testCase = "testing";
$command = "lin --help";
my $test = "/usr/anil/scripts/ActData/$testCase.txt";
open (STDERR, "> $test");
$t = system($command);