1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 00:02:29 +01:00
imapsync/W/learn/getoptlong
Nick Bebout b7c835d670 1.670
2015-12-03 11:16:32 -06:00

15 lines
170 B
Perl
Executable File

#!/usr/bin/perl -w
use strict ;
use Getopt::Long ;
use Data::Dumper ;
my %define ;
GetOptions (
"define=s" => \%define
) ;
print Dumper( \%define ) ;