mirror of
https://github.com/imapsync/imapsync.git
synced 2024-11-17 08:12:48 +01:00
15 lines
170 B
Plaintext
15 lines
170 B
Plaintext
|
#!/usr/bin/perl -w
|
||
|
|
||
|
use strict ;
|
||
|
use Getopt::Long ;
|
||
|
use Data::Dumper ;
|
||
|
|
||
|
my %define ;
|
||
|
|
||
|
GetOptions (
|
||
|
"define=s" => \%define
|
||
|
) ;
|
||
|
|
||
|
print Dumper( \%define ) ;
|
||
|
|