Win32::Unicode::Process - manipulate processes.


SYNOPSIS

  use Win32::Unicode::Process;
  
  systemW "echo $flagged_utf8_string";
  systemW 'perl', '-e', 'print "ok"';
  
  execW "echo $flagged_utf8_string";
  execW 'perl', '-e', 'print "ok"';


DESCRIPTION

THIS MODULE IS ALPHA LEVEL AND MANY BUGS.

Win32::Unicode::Process is Unicode friendly manipulate process. But always use the SHELL. That could become a security hole.


FUNCTIONS

systemW
like CORE::system.
  systemW "echo $flagged_utf8_string";
  systemW 'perl', '-e', 'print "ok"';

execW
like CORE::exec
  execW "echo $flagged_utf8_string";
  execW 'perl', '-e', 'print "ok"';


AUTHOR

Yuji Shimada <xaicron@cpan.org>


SEE ALSO

the Win32::Process manpage


LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

 Win32::Unicode::Process - manipulate processes.