Win32::Unicode::Process - manipulate processes.


Win32-Unicode documentation  | view source Contained in the Win32-Unicode distribution.

Index


SYNOPSIS

Top

  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

Top

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

Top

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

Top

Yuji Shimada <xaicron@cpan.org>

SEE ALSO

Top

Win32::Process

LICENSE

Top

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


Win32-Unicode documentation  | view source Contained in the Win32-Unicode distribution.