K
king
Hi,
my $process;
Win32:
rocess::Create(
$process,
"C:\\dos\\mem.exe",
"mem",
0,
NORMAL_PRIORITY_CLASS,
".",
) or die get_formatted_error();
I want to use the output from mem.
If i a doing like
my $process;
Win32:
rocess::Create(
$process,
"C:\\dos\\mem.exe",
"mem>temp.txt",
0,
NORMAL_PRIORITY_CLASS,
".",
) or die get_formatted_error();
its not working for me.
Can you suggest how can i capture the output from a process for further
processing.
my $process;
Win32:
$process,
"C:\\dos\\mem.exe",
"mem",
0,
NORMAL_PRIORITY_CLASS,
".",
) or die get_formatted_error();
I want to use the output from mem.
If i a doing like
my $process;
Win32:
$process,
"C:\\dos\\mem.exe",
"mem>temp.txt",
0,
NORMAL_PRIORITY_CLASS,
".",
) or die get_formatted_error();
its not working for me.
Can you suggest how can i capture the output from a process for further
processing.