Files
percona-toolkit/t/pt-query-digest/samples/write-to-fifo.pl
2011-06-24 16:02:05 -06:00

14 lines
233 B
Perl
Executable File

#!/usr/bin/env perl
use strict;
use warnings FATAL => 'all';
use English qw(-no_match_vars);
my ($fifo, $t) = @ARGV;
open my $fh, '>', $fifo or die $OS_ERROR;
print $fh "I'm a little teapot short and stout...\n";
sleep $t;
exit;