mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
d918988baa
- dynamic configuration support - safe process - cleanups - create new suite for fedarated
21 lines
267 B
Perl
Executable file
21 lines
267 B
Perl
Executable file
#!/usr/bin/perl
|
|
# -*- cperl -*-
|
|
|
|
use strict;
|
|
use Getopt::Long;
|
|
|
|
my $opt_exit_code= 0;
|
|
|
|
GetOptions
|
|
(
|
|
# Exit with the specified exit code
|
|
'exit-code=i' => \$opt_exit_code
|
|
);
|
|
|
|
|
|
print "Hello stdout\n";
|
|
print STDERR "Hello stderr\n";
|
|
|
|
exit ($opt_exit_code);
|
|
|
|
|