5 my $body_filename = $ARGV[0];
6 my @command = @ARGV[1 .. $#ARGV];
9 my $body_size = -s $body_filename;
10 $ENV{"CONTENT_LENGTH"} = $body_size;
11 open(my $body_fh, "<", $body_filename) or die "Cannot open $body_filename: $!";
13 defined read($body_fh, $body_data, $body_size) or die "Cannot read $body_filename: $!";
22 my $pid = open(my $out, "|-", @command);
24 # disable buffering at $out
25 my $old_selected = select;
30 print $out $body_data or die "Cannot write data: $!";
32 sleep 60; # is interrupted by SIGCHLD
35 die "Command did not exit after reading whole body";