Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

paranoid::module(3pm) [debian man page]

Paranoid::Module(3pm)					User Contributed Perl Documentation				     Paranoid::Module(3pm)

NAME
Paranoid::Module -- Paranoid Module Loading Routines VERSION
$Id: Module.pm,v 0.82 2011/12/20 02:59:37 acorliss Exp $ SYNOPSIS
use Paranoid::Module; $rv = loadModule($module, qw(:all)); DESCRIPTION
This provides a single function that allows you to do dynamic loading of modules at runtime, along with importation of the exported symbol table. Specific functions and/or tag sets can be declared, just as you would in a normal use or import statement. SUBROUTINES
/METHODS loadModule $rv = loadModule($module, qw(:all)); Accepts a module name and an optional list of arguments to use with the import function. Returns a true or false depending whether the require was successful. DEPENDENCIES
o Paranoid o Paranoid::Debug BUGS AND LIMITATIONS
The loadModule cannot be used to require external files, it can only be used to load modules in the existing library path. In addition, while we track what symbol sets (if any) were imported to the caller's name space the return value doesn't reflect the value of the import method. This is intentional because not every module out there offers a properly coded import function or inherits it from Exporter(3)). The return value from import is ignored. AUTHOR
Arthur Corliss (corliss@digitalmages.com) LICENSE AND COPYRIGHT
This software is licensed under the same terms as Perl, itself. Please see http://dev.perl.org/licenses/ for more information. (c) 2005, Arthur Corliss (corliss@digitalmages.com) perl v5.14.2 2011-12-20 Paranoid::Module(3pm)

Check Out this Related Man Page

Paranoid::Log::Syslog(3pm)				User Contributed Perl Documentation				Paranoid::Log::Syslog(3pm)

NAME
Paranoid::Log::Syslog - Log Facility Syslog VERSION
$Id: Syslog.pm,v 0.83 2010/06/03 19:04:07 acorliss Exp $ SYNOPSIS
use Paranoid::Log; enableFacility('local3', 'syslog', 'debug', '+'); enableFacility('local3', 'syslog', 'debug', '+', 'my-daemon'); DESCRIPTION
This module implements UNIX syslog support for logging purposes. Which should seem natural given that the entire Paranoid::Log API is modeled closely after it. SUBROUTINES
/METHODS NOTE: Given that this module is not intended to be used directly nothing is exported. init log remove dump DEPENDENCIES
o Paranoid::Debug o Unix::Syslog BUGS AND LIMITATIONS
Because we're keeping a connection to the syslogger open we don't support enabling multiple facilities that log as different idents, etc. The first syslog facility that gets activated will set those parameters. AUTHOR
Arthur Corliss (corliss@digitalmages.com) LICENSE AND COPYRIGHT
This software is licensed under the same terms as Perl, itself. Please see http://dev.perl.org/licenses/ for more information. (c) 2005, Arthur Corliss (corliss@digitalmages.com) perl v5.14.2 2010-06-03 Paranoid::Log::Syslog(3pm)
Man Page

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Paranoid about hackers

Hi all I noted something strange on my server. The get mesages on my terminal even when I am not logged on. What does this mean? I don;t remember the excact message but it looked like messages from my /var/log/messages. "Can't locate mod probe!" or something like that. I am trying to get the... (4 Replies)
Discussion started by: skotapal
4 Replies

2. Shell Programming and Scripting

Importing dump file

Hi, I am trying to import 22 .dmp files but facing the problem with the last table file it never ends the import command, only the table is created but the rows of the table don't get imported. This is the problem with only ine table rest 21 tables are being imported properly. Thanks in... (2 Replies)
Discussion started by: anushilrai
2 Replies

3. Shell Programming and Scripting

how to create custom modules in perl and how to import all modules with single command?

I have some custom functions which i want to use in perl Scripting all time. i want to How to create modules in perl and how to import them. Also if i create 15 modules and i want to > import all at once then how can i import? (0 Replies)
Discussion started by: Navrattan Bansa
0 Replies