编程语言
首页 > 编程语言> > Perl Getopt 使用模板

Perl Getopt 使用模板

作者:互联网

https://www.cnblogs.com/yeungchie/

#!/usr/bin/perl -wait
use strict;
use Getopt::Long;                  # 声明使用模块

my ($input,$output,$help);

                                   # 定义输入参数
GetOptions (
    "i|input:s"  => \$input,       # 使用 |  表明可以使用 i 或者 input 来表示这个参数
    "o|output:s" => \$output,      # 使用 : 表明输入数据类型
    "h|help"     => \$help,        # 使用 => 来将参数转递给变量
);

die "Usage: Print help message \n" if (defined $help);

open IN,"$input";
while (<IN>){
    chomp;
    print "$_\n";
}
close IN;

标签:use,help,output,使用,Perl,input,Getopt,模板
来源: https://www.cnblogs.com/yeungchie/p/14094563.html