=encoding euc-jp =head1 名前 PAR - Perl Archive Toolkit =head1 バージョン This document describes version 0.75 of PAR, released September 21, 2003. このドキュメントは2003年9月21日にリリースされたPAR 0.75について説明している。 =head1 概要 (If you want to make an executable that contains all module, scripts and data files, please consult the bundled L utility instead.) (もし全てのモジュール、スクリプト、データファイルを含んだ実行ファイルを作成 したいなら、代わりに、バンドルされているLユーティリティを吟味して欲しい。) Following examples assume a F file in Zip format; support for compressed tar (F<*.tgz>/F<*.tbz2>) format is under consideration. 次の例は、Zip形式のFファイルを想定している;圧縮された tar(F<*.tgz>/F<*.tbz2>)形式のサポートは検討中である。 To use F from F<./foo.par>: F<./foo.par>からFを使う: % perl -MPAR=./foo.par -MHello % perl -MPAR=./foo -MHello # .par 部分はオプション Same thing, but search F in the C<@INC>; 同じことだが、C<@INC>からFを探す; % perl -MPAR -Ifoo.par -MHello % perl -MPAR -Ifoo -MHello # 同上 Following paths inside the PAR file are searched: PARファイル中で以下のパスがサーチされる: /lib/ /arch/ /i386-freebsd/ # これは $Config{archname} /5.8.0/ # これは $Config{version} /5.8.0/i386-freebsd/ # 上を両方 / PAR files may also (recursively) contain other PAR files. All files under following paths will be considered as PAR files and searched as well: PARファイルは他のPARファイルを(再帰的に)含むこともできる。 以下のパス下の全ファイルがPARファイルとみなされ、検索される: /par/i386-freebsd/ # これは $Config{archname} /par/5.8.0/ # これは $Config{version} /par/5.8.0/i386-freebsd/ # 上を両方 /par/ Run F