Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
myprog -a lib1 -a lib2 -a lib3
my $current_switch = '--';
for (my $i=0 ; $i <= $#ARGV ; $i++)
{
if ($ARGV[$i] =~ /^\-/)
{
$current_switch = $ARGV[$i];
$my_argv{$current_switch} = ();
}
else
{
push @{$my_argv{$current_switch}},$ARGV[$i];
}
}
foreach (keys %my_argv)
{
print "$_ = ",join(',',@{$my_argv{$_}}),"\n";
}