- or download this
my $input = \*STDIN;
my $entity = $parser->parse($input);
- or download this
my $input = \*STDIN;
my @copy = <$input>;
...
my $entity = $parser->parse($input);
- or download this
my $input = \*STDIN;
my $copy = $input;
- or download this
my $input = \*STDIN;
my @copy = <$input>;
...
open($copy, "</tmp/copy.txt");
my $entity = $parser->parse($copy);