/usr/share/perl5/OpaL/where.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 | #!/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::where;
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(which);
# If you are using CVS/RCS this can be quite handy.
#$VERSION = do{my@r=q$Revision: 1.4 $=~/\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::where::variablename
# All file-scooped variables must be created before any method that uses them.
# my $myvar = '';
###############################################################################
########################### PRELOADED METHODS #################################
###############################################################################
# Preloaded methods go here.
# 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::where - Perl extension for locating system resources.
=head1 SYNOPSIS
use OpaL::where qw(which);
=head1 DESCRIPTION
OpaL::where is a module for locating system resources.
=head1 FUNCTIONS
=over 4
=item B<which>
Which takes a program name and searches for that in the PATH environment
variable and returns the path to the executable. If no program is found with
that name undef is returned instead.
This is similar to the program with the same name. See L<which(1)>.
USAGE:
$t = C<which>("perl");
=back
=head1 AUTHOR
Ola Lundqvist <ola@inguza.com>
=head1 SEE ALSO
perl(1), which(1).
=cut
###############################################################################
########################### AUTOLOAD METHODS ##################################
###############################################################################
###############################################################################
# Name: which
# Description: Searches for a program in the PATH. Returns the path to the
# file if found, undef else.
# Arguments: A program to search for.
# Requres: $ENV{'PATH'}
# Author: Ola Lundqvist <ola@inguza.com>
# Date: 2000-07-09 Wrote it!
###############################################################################
sub which {
my $s = shift;
my $d;
foreach $d (split /:/, $ENV{'PATH'}) {
if (-f "$d/$s") {
return "$d/$s";
}
}
return undef;
}
|