This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix quotewords
[perl5.git] / lib / open2.pl
1 # This is a compatibility interface to IPC::Open2.  New programs should
2 # do
3 #
4 #     use IPC::Open2;
5 #
6 # instead of
7 #
8 #     require 'open2.pl';
9
10 package main;
11 use IPC::Open2 'open2';
12 1