- 论坛徽章:
- 0
|
- #!/usr/bin/perl -w
- use strict;
- if (@ARGV != 2) {
- print "you need input 2 argument,Usage : \t $0 dic de-file \n";
- exit 1;
- }
- my $dic = shift;
- my %dich;
- my $file = shift;
- open (DIC,"$dic") or die "open file failed $!";
- while(<DIC>){
- chomp;
- (my $key,my $value) = split / /;
- $dich{$key} = $value;
- }
- close DIC;
- open (F,"$file") or die "open file failed $!";
- while (<F>){
- chomp;
- print $dich{$_},"\n";
- }
- close F;
复制代码
- [symphony@archlinux a]$ ls
- corres.pl dic file
- [symphony@archlinux a]$ cat dic
- 1 first
- 23 second
- 033 thrid
- 04567 fourth
- [symphony@archlinux a]$ cat file
- 1
- 23
- 033
- 04567
- [symphony@archlinux a]$ ./corres.pl dic file
- first
- second
- thrid
- fourth
复制代码 |
|