in reply to Re^3: How to close command prompts opened with perl script after execution that script
in thread How to close command prompts opened with perl script after execution that script
my $cmd = "adb shell cat /proc/kmsg | tee kernel_logs.txt";
print $cmd;
my $processObj;
Win32::Process::Create(
$processObj,
"C:/windows/system32/cmd.exe",
"cmd.exe /k $cmd",
0,
NORMAL_PRIORITY_CLASS | CREATE_NEW_CONSOLE,
"."
)|| die ErrorReport();
sleep(3);
$processObj->Kill(0);
this was my code, but after sleep processObj is not getting killed.