mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-09 07:30:02 +00:00
14 lines
233 B
Perl
Executable File
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;
|