1
shierji 2016-10-31 13:31:24 +08:00 1
|
3
cfy 2016-10-31 17:21:15 +08:00 1
|
4
ltux 2016-10-31 17:28:15 +08:00 1
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 2016-10-31 17:29:04 +08:00 1
|
6
twl007 2016-11-01 04:12:57 +08:00 1
while (<>) {
push(@content, $_); } |