Help for this page
my $opt = 'ah1:2:3:f:l:L:i:d:'; my ($isascii, $fmtfile, $fldname, $length, $location, $infile, $dirnam +e); ... case {$opt{d}} { $dirname = $opt{d}; next; } case {$opt{h}} { usage(); exit; } }
switch ($_) { case {$opt{1}} { read_structure_type1($opt{1}); next; } ... case {$opt{d}} { $dirname = $opt{d}; next; } else {usage(); exit; } }