mirror of
https://github.com/imapsync/imapsync.git
synced 2024-11-17 00:02:29 +01:00
15 lines
170 B
Perl
Executable File
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 ) ;
|
|
|