5

古いコードを次のように新しいスタイルで書き直します。

#old style
open(FD,"file");

#new style
$fh = IO::File->new("file","r");

ファイルは大丈夫ですが、パイプを開く方法がわかりません。

# read from pipes.
open(PIPE,"some_program |");

# write to pipes.
open(PIPE,"| some_program");

OOスタイルIOでパイプを処理する方法は?

追加:
ジョナサンに感謝します、それは大丈夫です。

# read from pipes.
$pipe = IO::Pipe->new;
$pipe->reader('some_program');
$data = <$pipe>;

# write from pipes.
$pipe = IO::Pipe->new;
$pipe->writer('some_program');
print $pipe "foo,bar,baz";
4

1 に答える 1

4

IO::PipeFileHandleを確認してください。

于 2009-02-03T07:59:10.033 に答える