Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / script / pipe.pl
1 #!/usr/bin/perl -w
2 #############################################################################
3 ## Name:        script/pipe.pl
4 ## Purpose:     redirects stderr to stdout and execs arguments
5 ## Author:      Mattia Barbon
6 ## Modified by:
7 ## Created:     13/12/2000
8 ## RCS-ID:      $Id: pipe.pl 2057 2007-06-18 23:03:00Z mbarbon $
9 ## Copyright:   (c) 2000 Mattia Barbon
10 ## Licence:     This program is free software; you can redistribute it and/or
11 ##              modify it under the same terms as Perl itself
12 #############################################################################
13
14 open STDERR, ">&STDOUT";
15
16 exec @ARGV;
17
18 # Local variables: #
19 # mode: cperl #
20 # End: #