File: exe.pl

package info (click to toggle)
libconfig-pit-perl 0.04-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 288 kB
  • sloc: perl: 4,097; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 142 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env perl
use strict;

my $a =  do { local $/; <ARGV> };

my $tst = $ENV{TEST_FILE};
open my $fh, ">$tst";
print $fh $a;
close $fh;