Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

module::cpants::kwalitee::version(3pm) [debian man page]

Module::CPANTS::Kwalitee::Version(3pm)			User Contributed Perl Documentation		    Module::CPANTS::Kwalitee::Version(3pm)

NAME
Module::CPANTS::Kwalitee::Files - Check for various files SYNOPSIS
Find various files and directories that should be part of every self-respecting distribution. DESCRIPTION
Methods order Defines the order in which Kwalitee tests should be run. Returns 10, as data generated by "MCK::Files" is used by all other tests. map_filenames get db_filenames from real_filenames analyse "MCK::Files" uses "File::Find" to get a list of all files and dirs in a dist. It checks if certain crucial files are there, and does some other file-specific stuff. get_files The subroutine used by "File::Find". Unfortunantly, it depends on some global values. kwalitee_indicators Returns the Kwalitee Indicators datastructure. o extractable o extracts_nicely o has_readme o has_manifest o has_meta_yml o has_buildtool o has_changelog o no_symlinks o has_tests o has_tests_in_t_dir o buildfile_not_executabel o has_example (optional) o no_generated_file o has_version_in_each_file o no_stdin_for_prompting SEE ALSO
Module::CPANTS::Analyse AUTHOR
Thomas Klausner <https://metacpan.org/author/domm> COPYRIGHT AND LICENSE
Copyright X 2003X2006, 2009 Thomas Klausner <https://metacpan.org/author/domm> You may use and distribute this module according to the same terms that Perl is distributed under. perl v5.14.2 2012-06-08 Module::CPANTS::Kwalitee::Version(3pm)

Check Out this Related Man Page

Module::CPANTS::Kwalitee::License(3pm)			User Contributed Perl Documentation		    Module::CPANTS::Kwalitee::License(3pm)

NAME
Module::CPANTS::Kwalitee::License - Checks if there is a license SYNOPSIS
Checks if the disttribution specifies a license. DESCRIPTION
Methods order Defines the order in which Kwalitee tests should be run. Returns 100. analyse "MCK::License" checks if there's a "license" field "META.yml". Additionally, it looks for a file called LICENSE and a POD section namend LICENSE kwalitee_indicators Returns the Kwalitee Indicators datastructure. o has_license o has_license_in_metayml License information Pleaces wher the licens information is taken from: Has a LICENSE file file_license 1|0 Content of LICENSE file matches License X from Software::License License in META.yml License in META.yml matches one of the known licenses License in source files recognized by Software::LicenseUtils For each file keep where is was it recognized. Has license or copyright entry in pod (that might not be recognized by Software::LicenseUtils) # has_license SEE ALSO
Module::CPANTS::Analyse AUTHOR
Thomas Klausner <https://metacpan.org/author/domm> and Gabor Szabo <https://metacpan.org/author/szabgab> COPYRIGHT AND LICENSE
Copyright X 2003X2009 Thomas Klausner <https://metacpan.org/author/domm> Copyright X 2006X2008 Gabor Szabo <https://metacpan.org/author/szabgab> You may use and distribute this module according to the same terms that Perl is distributed under. perl v5.14.2 2012-06-08 Module::CPANTS::Kwalitee::License(3pm)
Man Page

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Reading Files

Hi I need to perform certain tests on information contained in a file, a lot of what is contained in the file is duplicate data, so what I want to do as it is a failrly substantial file size is to start and finish reading from a specifed line in the file. Can someone tell me how to indicate... (3 Replies)
Discussion started by: oop
3 Replies

2. UNIX for Advanced & Expert Users

Find File names with sustitution

Hi All, Iam trying to find two kinds of files while ignoring rest of the files in a directory The files are like below Files to be found -------------------- perp45560 oerp4556 Files to be ignored ---------------------- oerp4556123450 oerp4556123470 I was trying the following... (4 Replies)
Discussion started by: baanprog
4 Replies

3. Shell Programming and Scripting

Find a file in sub-directories.. o/p just the path

Hello All, I am somehow stumped with this ting. 'Find' will sure show me.. but I want only thepath of all the occurences of the file in any of the sub-dirs.. Any help will be sincerely appreciated. thanx! (3 Replies)
Discussion started by: pranavagarwal
3 Replies

4. UNIX for Dummies Questions & Answers

Find Files

Hi, Can any one help me how can we find the files which is greater than 1 GB and files between 500MB to 1GB starting from root? Thanks, Sam (1 Reply)
Discussion started by: Serious Sam
1 Replies

5. Shell Programming and Scripting

Find most recent files in dirs and tar them up?

Hey all.. This should be simple but stoopid here can't get head around it! I have many directories, say 100 each with many files inside. I need a script to traverse through the dirs, find most recent file in each dir and add it to a tar file. I can find the files with something like for... (1 Reply)
Discussion started by: bobdung
1 Replies

6. UNIX for Dummies Questions & Answers

Creating a List of Files With Find

Hi, I need to go through all the files on my system and build a list/output file with the paths of all files where the first two characters within the file match an expression. I know I can use something like find . | xargs cut -b1-2 or find . -exec cut -b1-2 {} \; to get the characters... (3 Replies)
Discussion started by: 008_
3 Replies

7. UNIX for Dummies Questions & Answers

Find in Files (special characters)

Well, I've searched the forum, but couldn't find an option, that would help me. I'm really a dummie in unix, so here it goes. I've got like 50k files in a single catalogue. One of them contains a string: Including the box/square brackets. I tried to find it manually, and use some search... (2 Replies)
Discussion started by: kalik
2 Replies

8. UNIX for Dummies Questions & Answers

Search String in File List

Hi, I have a list of files which can be identified as abcd*.xml where * represent multiple timestamps for multiple files. I need to do following checks 1. Find number of files (which we get by doing following) FILECOUNT=`ls -ltr /dir/abcd*.xml | wc -l` 2. If check 1 gives '1' as... (2 Replies)
Discussion started by: dsrookie
2 Replies

9. Shell Programming and Scripting

Find Files and then convert them to Uppercase

Hi All, So I'm new to scripting and I've been put in a position to convert a bunch of files with specific extensions in a folder and all its subfolders to uppercase including their extension. I figure so far I could do something like this: ... ... and then input $line into another bash... (12 Replies)
Discussion started by: ideal2545
12 Replies

10. Shell Programming and Scripting

Find Large Files Recursively From Specific Directory

Hi. I found many scripts in the web of achieving this. But I like to use this one find /EDWH-DMT03 -xdev -size +10000 -exec ls -la {} \;|sort -n -k 5 > LARGE.rst But the problem is, why it still list out files with 89 bytes as the output? Is there anything wrong with the command? My... (7 Replies)
Discussion started by: aimy
7 Replies