码迷,mamicode.com
首页 > 其他好文 > 详细

【转载】perl接受传递参数的方法

时间:2014-12-26 18:38:23      阅读:335      评论:0      收藏:0      [点我收藏+]

标签:

#! /usr/bin/perl

use Getopt::Std;
use warnings;
use strict;

sub read_from_sh($) {
my $file = shift;
my @files = ();
open F, $file or die "Could not open $file: $!";
while (<F>) {
next if /^\s*$/;
push @files, $_;
}
close F or die "Could not close $file: $!";
return @files;
}

my @files;
my %opts = ();
getopts("s:", \%opts);
if ($opts{‘s‘}) {
@files = read_from_sh($opts{‘s‘});
}else {
@files = @ARGV;
}
for my $file (@files) {
print "file: $file\n";
}

 

export.pl同级目录下: chage.csv chage2.csv txt.txt t.txt

>perl export.pl chage.csv chage2.csv txt.txt t.txt

 

OUTPUT:

file:export.pl

file:chage.csv

chage2.csv

file:txt.txt

file:t.txt

【转载】perl接受传递参数的方法

标签:

原文地址:http://www.cnblogs.com/hzj680539/p/4187249.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!