Install DBIC-compatible ident renderer
[scpubgit/Q-Branch.git] / maint / inplace
CommitLineData
cd979d19 1#!/usr/bin/env perl
2
9bcd623d 3use strictures 2;
4use autodie;
5
6my ($cmd, $file, @args) = @ARGV;
7
8my $input = do { local (@ARGV, $/) = $file; <> };
9
10close STDOUT;
11open STDOUT, '>', $file;
12
13open $out, '|-', $cmd, @args;
14
15print $out $input;
16
17close $out;