This file is indexed.

/usr/share/perl5/OpaL/read.pm is in opalmod 0.2.1.

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
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#!/usr/bin/perl
#    OpaL Perl Modules
#    Copyright (C) 2000,2007-2008  Ola Lundqvist <ola@inguza.com>
#
#    For full COPYRIGHT notice see the COPYING document.
#
#    This program is free software; you can redistribute it and/or modify
#    it under the terms of either:
#
#	a) the GNU General Public License as published by the Free
#	Software Foundation; either version 1, or (at your option) any
#	later version, or
#
#	b) the "Artistic License" which comes with this Kit.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
#    the GNU General Public License or the Artistic License for more details.
#
#
#    For more information take a look at the official homepage at:
#      http://inguza.com/software/opalmod
#    or contact the author at:
#      ola@inguza.com
#

package OpaL::read;

use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
use POSIX qw(strftime);

require Exporter;

@ISA = qw(Exporter AutoLoader);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
@EXPORT = qw( );
@EXPORT_OK = qw(readfile readscalarfile readfileline
		readcommand readscalarcommand readcommandline);

# If you are using CVS/RCS this can be quite handy.
#$VERSION = do{my@r=q$Revision: 1.11 $=~/\d+/g;sprintf '%d.'.'%02d'x$#r,@r};

# If that is not what you want use this instead. Will be rewritten by
# create release.
my $version = '0.01';
$VERSION = $version;

###############################################################################
############################ PACKAGE GLOBALS ##################################
###############################################################################

# First exported ones (those in @EXPORT or @EXPORT_OK)

# Then package other global ones. (not exported ones)
# Can be accessed through $OpaL::read::variablename

# All file-scooped variables must be created before any method that uses them.
# my $myvar = '';

###############################################################################
########################### PRELOADED METHODS #################################
###############################################################################
# Preloaded methods go here.

###############################################################################
# Name:		readcommand
# Description:	Executes a program and read the piped result.
# Returns:	Array of lines.
# Arguments:	$command_string
# Author:	Ola Lundqvist <ola@inguza.com>
# Date:		2000-05-01
#		2000-06-27	Better argument definition.
###############################################################################
sub readcommand {#($) {
    my $cmd = shift;
    open C, "$cmd |";
    my @t = <C>;
    close (C);
    return @t;
}

###############################################################################
# Name:		readfile
# Description:	Reads a file.
# Returns:	Array of lines.
# Arguments:	$filename
# Author:	Ola Lundqvist <ola@inguza.com>
# Date:		2000-05-13
#		2000-06-25	Removed &action from open. Not working.
#		2000-06-27	Better argument definition.
#				Removed errlvl.
###############################################################################
sub readfile {#($) {
    my $file = shift;
    open C, $file;
    my @t = <C>;
    close (C);
    return @t;
}

###############################################################################
# Name:		readfileline
# Description:	Reads a file.
# Returns:	The first line.
# Arguments:	$filename
# Author:	Ola Lundqvist <ola@inguza.com>
# Date:		2000-05-13
#		2000-07-06	Removed &action from open. Not working.
#				Better argument definition.
#				Removed errlvl.
###############################################################################
sub readfileline { #($){
    my $file = shift;
    open C, $file;
    my $t = <C>;
    close (C);
    return $t;
}

###############################################################################
# Name:		readscalarfile
# Description:	Reads a file.
# Returns:	Entire file in scalar.
# Arguments:	$filename
# Author:	Ola Lundqvist <ola@inguza.com>
# Date:		2000-05-13
#		2000-06-25	Removed &action from open. Not working.
#		2000-06-27	Better argument definition.
#				Removed errlvl.
###############################################################################
sub readscalarfile {#($) {
    my $file = shift;
    open C, $file;
    my $m = $/;
    undef $/;
    my $t = <C>;
    close (C);
    $/ = $m;
    return $t;
}

###############################################################################
# Name:		readscalarcommand
# Description:	Reads a command output into a scalar.
# Returns:	Entire file in scalar.
# Arguments:	$command
# Author:	Ola Lundqvist <ola@inguza.com>
# Date:		2000-06-27	Wrote it.
###############################################################################
sub readscalarcommand {#($) {
    my $cmd = shift;
    open C, "$cmd |";
    my $m = $/;
    undef $/;
    my $t = <C>;
    close (C);
    $/ = $m;
    return $t;
}

###############################################################################
# Name:		readcommandline
# Description:	Executes a program and read the piped result.
# Returns:	The first line.
# Arguments:	$command_string
# Author:	Ola Lundqvist <ola@inguza.com>
# Date:		2000-05-01
#		2000-06-27	Better argument definition.
###############################################################################
sub readcommandline {#($) {
    my $cmd = shift;
    open C, "$cmd |";
    my $t = <C>;
    close (C);
    return $t;
}


# Autoload methods go after =cut, and are processed by the autosplit program.

# Modules must return true.
1;
__END__

###############################################################################
############################# DOCUMENTATION ###################################
###############################################################################
# Below is the stub of documentation for your module. You better edit it!

=head1 NAME

OpaL::read - Perl extension for reading files and commands.

=head1 SYNOPSIS

  use OpaL::read qw(functions);

No functions or variables are exported automaticly so you have to specify
them here. 

=head1 DESCRIPTION

OpaL::read is used for reading files and commands.

All functions are autoloaded so they will not be loaded into memory if you
have not used them before.

=head1 FUNCTIONS

=over 4

=item B<readfile>

Reads the content of the specified file and returns a list with the all lines.

USAGE:
    @foo = C<readfile>($filename);

=item B<readfileline>

Reads the first line of the specified file and returns a scalar with that line.

USAGE:
    $foo = C<readfileline>($filename);

=item B<readscalarfile>

Reads the content of the specified file and returns a scalar with the entire content.

USAGE:
    $foo = C<readscalarfile>("filename");

=item B<readcommand>

Reads the content from the output of the specified command and returns a list with the all lines.

USAGE:
    @foo = C<readcommand>("command");

=item B<readcommandline>

Reads the first line from output of the specified command and returns a scalar with that line.

USAGE:
    $foo = C<readcommandline>("command)";

=item B<readscalarfile>

Reads the content for the output of the specified file and returns a scalar with the entire content.

USAGE:
    $foo = C<readscalarcommand>($command);

=back

=head1 AUTHOR

Ola Lundqvist <ola@inguza.com>

=head1 SEE ALSO

perl(1).

=cut

###############################################################################
########################### AUTOLOAD METHODS ##################################
###############################################################################