1
shierji Oct 31, 2016 |
3
cfy Oct 31, 2016 |
4
ltux Oct 31, 2016 Perl 官方文档
Perl FAQ: How can I read in an entire file all at once? http://perldoc.perl.org/perlfaq5.html#How-do-I-print-to-more-than-one-file-at-once%3f |
5
ltux Oct 31, 2016 |
6
twl007 Nov 1, 2016 while (<>) {
push(@content, $_); } |