Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

perlver(1p) [debian man page]

PERLVER(1p)						User Contributed Perl Documentation					       PERLVER(1p)

NAME
perlver - The Perl Minimum Version Analyzer SYNOPSIS
adam@red:~$ perlver Perl-MinimumVersion Found directory '.' Searching for Perl files... found 3 file(s) Scanning lib/Perl/MinimumVersion.pm... done Scanning t/01_compile.t... done Scanning t/02_main.t... done --------------------------------------------------------- | file | explicit | syntax | external | | --------------------------------------------------------- | | lib/Perl/MinimumVersion.pm | 5.005 | ~ | n/a | | t/01_compile.t | ~ | ~ | n/a | | t/02_main.t | ~ | ~ | n/a | --------------------------------------------------------- Minimum version of Perl required: ... adam@red:~$ DESCRIPTION
"perlver" is a console script created to provide convenient access to the functionality provided by Perl::MinimumVersion. The synopsis above pretty much covers all you need to know at this point. TO DO
- Add PPI::Cache integration - Add PPI::Metrics integration (once it exists) - Add some sort of parseable output SUPPORT
All bugs should be filed via the bug tracker at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Perl-MinimumVersion> For other issues, or commercial enhancement and support, contact the author AUTHORS
Adam Kennedy <adamk@cpan.org> SEE ALSO
PPI, Perl::MinimumVersion COPYRIGHT
Copyright 2005 - 2011 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. perl v5.10.1 2011-03-02 PERLVER(1p)

Check Out this Related Man Page

PPI::Statement::Data(3) 				User Contributed Perl Documentation				   PPI::Statement::Data(3)

NAME
PPI::Statement::Data - The __DATA__ section of a file SYNOPSIS
# Normal content __DATA__ This: data is: part of: the PPI::Statement::Data: object INHERITANCE
PPI::Statement::Compound isa PPI::Statement isa PPI::Node isa PPI::Element DESCRIPTION
"PPI::Statement::Data" is a utility class designed to hold content in the __DATA__ section of a file. It provides a single statement to hold all of the data. METHODS
"PPI::Statement::Data" has no additional methods beyond the default ones provided by PPI::Statement, PPI::Node and PPI::Element. However, it is expected to gain methods for accessing the data directly, (as a filehandle for example) just as you would access the data in the Perl code itself. TO DO
- Add the methods to read in the data - Add some proper unit testing SUPPORT
See the support section in the main module. AUTHOR
Adam Kennedy <adamk@cpan.org> COPYRIGHT
Copyright 2001 - 2011 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. perl v5.18.2 2011-02-25 PPI::Statement::Data(3)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Scanning file backwards

Is there any way to look for a directory path that is listed any number of lines *before* a keyword in an error message? I have a script that is trying to process different files that are always down a certain portion of a path, and if there is an error, then says there is an error, contact... (2 Replies)
Discussion started by: tekster757
2 Replies

2. Programming

Some help with Perl please (deciphering)

I am trying to simplify the coding in a script I was given, but it was written 7-10 years ago and is pretty complicated. below is a tidbit, if someone can break it down for me I would appreciate it. sub ParseText { my ($line, $key, $value, $sub, $script); foreach $line (@_)... (0 Replies)
Discussion started by: callyvan
0 Replies

3. UNIX for Dummies Questions & Answers

Perl syntax

Query with perl syntax Aim: is to change a perl script to use a new file I was required to replace - entries \"$entries\" with -lib <full_path_to_filename> So in the code detector.pm sub rundetector { my $class = shift; mkdir($resultDirectory); my... (3 Replies)
Discussion started by: sa@@
3 Replies

4. Shell Programming and Scripting

Issue with Perl Code in 5.10 vs 5.8

Hi All, I am working on Perl script to insert data into a table. It is pretty straight forward. For some reason it is not working in Linux which has 5.10 version of Perl and in AIX where the Perl version is 5.8 it works fine. I don't want to post the entire code here. Let me tell what is... (1 Reply)
Discussion started by: selvankj
1 Replies