Dies ist eine alte Version des Dokuments!
sub routine($$) {
my ($parameter1, $parameter2) = @_;
...
}
#-- calling 'command' with arguments
system("command arg1 arg2 arg3");
#-- better way of calling the same command
system("command", "arg1", "arg2", "arg3");