在线时间:8:00-16:00
132-9538-2358
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
使用Getopt::std模块
代码如下
use strict ;use Getopt::Std ;sub test{use vars qw($opt_d $opt_f) ; getopts('d:f:') ;print $opt_d, "\n" ;print $opt_f, "\n" ;}&test() ;1 ;
'd:f:' d和f后面有冒号,表示-d和-f后面必须跟参数。
对于更复杂的命令行参数处理,请看Getopt::long模块。
评论
请发表评论