projects
/
p5sagit/p5-mst-13.2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Fixed typo: "effecting data" -> "affecting data".
[p5sagit/p5-mst-13.2.git]
/
lib
/
open2.pl
1
# This legacy library is deprecated and will be removed in a future
2
# release of perl.
3
#
4
# This is a compatibility interface to IPC::Open2. New programs should
5
# do
6
#
7
# use IPC::Open2;
8
#
9
# instead of
10
#
11
# require 'open2.pl';
12
13
package main;
14
use IPC::Open2 'open2';
15
1