[pm 파일에 들어갈내용]
#!/usr/bin/perl -w
package 패키지명
use Exporter:
@ISA = ('Exporter');
@EXPORT = qw(&함수명, &함수명, ... , 변수명);
sub 함수명 {
}
1;
[*.pl에서 사용할 때]
#/usr/bin/perl -w
require "파일명.pm";
use 패키지명;
함수명(argument);
참고
perl cookbook chapter.12
댓글 없음:
댓글 쓰기