The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl

#  PODNAME: mcores
# ABSTRACT: Executable for App::OS::Detect::MachineCores

use v5.10;
use strict;
use warnings;

use FindBin;

use lib "$FindBin::Bin/../lib";

use App::OS::Detect::MachineCores;

say App::OS::Detect::MachineCores->new_with_options->cores;

__END__

=pod

=encoding utf-8

=head1 NAME

mcores - Executable for App::OS::Detect::MachineCores

=head1 VERSION

version 1.1.2

=head1 SYNOPSIS

On different systems, different approaches are needed to detect the number of cores for that machine.

This Module is a wrapper around these different approaches.

=head1 USAGE

This is the executable to L<App::OS::Detect::MachineCores>, please see the documentation there for usage.

=head1 AUTHOR

Daniel B. <dbr@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2012 by Daniel B..

This is free software, licensed under:

  DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE, Version 2, December 2004

=cut