Files
scripts/Perl Skript template/program.pl
2024-10-14 00:08:40 +02:00

23 lines
506 B
Perl

#!/usr/bin/perl
use strict;
use confdb;
###############################################################################
# main program
###############################################################################
my $app = "testapp";
my @ret = get_profiles($app);
foreach my $a (@ret) {
print "$a\n";
}
0; # end with exit code 0
###############################################################################
# subs
###############################################################################