Notice
Recent Posts
Recent Comments
준호씨의 블로그
perl - read file line by line 본문
반응형
라인수가 많지 않으면 cat 결과를 array 에 넣어서 읽으면 됩니다.
my @lines = `cat file.txt`;
for my $line (@lines) {
print $line;
}
라인수가 많으면 file open 을 이용합니다.
#!/usr/bin/env perl
use strict;
use warnings;
my $file = "file.txt";
open my $info, $file or die "Could not open $file: $!";
while (my $line = <$info>) {
print $line;
}
close $info;
반응형
'개발이야기' 카테고리의 다른 글
perl - 두개의 배열 합치기. merge two arrays. (0) | 2019.01.05 |
---|---|
python - http request 방법 모음. Requests, coreapi, urllib.request, http.client (0) | 2019.01.05 |
swift - Playground 에서 Concurrent 지원하기 (0) | 2019.01.05 |
linux - dig 커맨드 없을 때는 bind-utils 설치 (0) | 2019.01.05 |
javascript - canvas 에 텍스트 그리기 응용. 그림자 효과. drop shadow (0) | 2019.01.03 |
Comments