The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Run::Parts - Perl interface to Debian's run-parts tool

VERSION

Version 0.01

SYNOPSIS

Perl interface to Debian's run-parts tool. run-parts runs all the executable files named within constraints described below, found in the given directory. Other files and directories are silently ignored.

Additionally it can just print the names of the all matching files (not limited to executables, but ignores blacklisted files like e.g. backup files), but don't actually run them.

This is useful when functionality or configuration is split over multiple files in one directory.

Perhaps a little code snippet.

    use Run::Parts;

    my $rp = Run::Parts->new('directory);

    my @file_list        = $rp->list;
    my @executables_list = $rp->test;
    my $commands_output  = $rp->run;
    …

EXPORT

A list of functions that can be exported. You can delete this section if you don't export anything, such as for a purely object-oriented module.

METHODS

new (Constructor)

Creates a new Run::Parts object. Takes one parameter, the directory on which run-parts should work.

run_parts_command

Returns the run-parts to run with the given command parameter

list

Lists all relevant files in the given directory. Equivalent to "run-parts --list".

test

Lists all relevant executables in the given directory. Equivalent to "run-parts --test".

run

Runs all relevant executables in the given directory. Equivalent to "run-parts".

SEE ALSO

run-parts(8)

AUTHOR

Axel Beckert, <abe@deuxchevaux.org>

BUGS

Please report any bugs or feature requests to bug-run-parts at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Run-Parts. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Run::Parts

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2013 Axel Beckert.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 43:

Non-ASCII character seen before =encoding in '…'. Assuming UTF-8