关于用perl封装xalan命令

关于用perl封装xalan命令

各位大虾,现在有这样一个需求,用perl把
以下命令
     xalan -p table '$1' -p author '$2' -p date '$3' manager_.xml table_list_.xsl
放到perl的程序里test.pl执行,$1,$2,$3由test.pl来传,
调用方式为 perl test.pl 'test' 'hjj' '20080201'
并且参数少于三个的时候,显示帮助信息。
该怎么来实现,急用,请教大家,再次感谢。
1.
if(@ARGV <3){
   die " xlan xxxx xxxx xxxx";
}
2.
$arg1 = $ARGV[0];
$arg2 = $ARGV[1];
$arg3 = $ARGV[2];