• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

inc/Module/H21-Aug-2012-2,0811,566

lib/IPC/Run/H21-Aug-2012-14446

t/H21-Aug-2012-7854

ChangesH A D21-Aug-2012310 1610

MANIFESTH A D20-Aug-2012474 2221

Makefile.PLH A D21-Aug-2012307 1610

READMEH A D20-Aug-20121.7 KiB5538

README

1NAME
2    IPC::Run::SafeHandles - Use IPC::Run and IPC::Run3 safely
3
4SYNOPSIS
5        use IPC::Run::SafeHandles;
6
7DESCRIPTION
8    IPC::Run and IPC::Run3 are both very upset when you try to use them
9    under environments where you have STDOUT and/or STDERR tied to something
10    else, such as under fastcgi.
11
12    The module adds safe-guarding code when you call IPC::Run or IPC::Run3
13    under such environment to make sure it always works.
14
15    If you intend to release your code to work under normal envionrment as
16    well as under fastcgi, simply use this module *after* the "IPC" modules
17    are loaded in your code.
18
19AUTHOR
20    Chia-liang Kao, "<clkao at bestpractical.com>"
21
22BUGS
23    Please report any bugs or feature requests to "bug-ipc-run-safehandles
24    at rt.cpan.org", or through the web interface at
25    <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=IPC-Run-SafeHandles>. I
26    will be notified, and then you'll automatically be notified of progress
27    on your bug as I make changes.
28
29SUPPORT
30    You can find documentation for this module with the perldoc command.
31
32        perldoc IPC::Run::SafeHandles
33
34    You can also look for information at:
35
36    * AnnoCPAN: Annotated CPAN documentation
37        <http://annocpan.org/dist/IPC-Run-SafeHandles>
38
39    * CPAN Ratings
40        <http://cpanratings.perl.org/d/IPC-Run-SafeHandles>
41
42    * RT: CPAN's request tracker
43        <http://rt.cpan.org/NoAuth/Bugs.html?Dist=IPC-Run-SafeHandles>
44
45    * Search CPAN
46        <http://search.cpan.org/dist/IPC-Run-SafeHandles>
47
48ACKNOWLEDGEMENTS
49COPYRIGHT & LICENSE
50    Copyright 2007 Chia-liang Kao, all rights reserved.
51
52    This program is free software; you can redistribute it and/or modify it
53    under the same terms as Perl itself.
54
55