PERL로 파일입출력
프로그래밍???2012. 4. 6. 10:34
파일을 열고 문자열을 쓰고 닫는 예제는 아래와 같다
#!/usr/bin/perl
$filename = './test.txt';
$my_string = 'test for file write.';
print TEXT $my_string;
close(TEXT);
open(TEXT, $file_name);
$out_string = <TEXT>;
close(TEXT);
'프로그래밍???' 카테고리의 다른 글
Indy10 소켓이용시 참고사항 (3) | 2012.05.08 |
---|---|
TIdTCPServer OnExecute 샘플코드 (0) | 2012.05.07 |
Perl로 시간 처리하기 (0) | 2012.04.06 |
linux에서 mutex를 재귀적으로 사용하는 방법 (0) | 2012.03.26 |
clock_gettime에 대한 자료 (0) | 2011.08.04 |