( categories: command line parameters )
Use the @ARGV array in scalar context
Example:
if ( @ARGV > 0 )
{
print "Number of arguments: " . scalar @ARGV . "\n";
}
else
{
print "No arguments!\n";
}





