perl special charecter
时间:2014-07-22 23:09:35
收藏:0
阅读:293
- $_
- $PROCESS_ID
- $$
read a file line by line
#!/usr/bin/perl use strict; use warnings; my $dir ="./tmp"; open (FH, "<$dir/txn-history.txt") or die "Couldn‘t open $dir/txn-history.txt, $!"."\n"; while(<FH>) { print "$_"; }
评论(0)