/usr/share/perl5/IO/All/Temp.pm is in libio-all-perl 0.86-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | use strict; use warnings;
package IO::All::Temp;
use IO::All::File -base;
sub temp {
my $self = shift;
bless $self, __PACKAGE__;
my $temp_file = IO::File::new_tmpfile()
or $self->throw("Can't create temporary file");
$self->io_handle($temp_file);
$self->_error_check;
$self->autoclose(0);
$self->is_open(1);
return $self;
}
1;
|