App-MarkFiles

 view release on metacpan or  search on metacpan

bin/mark-ls  view on Meta::CPAN

#!/usr/bin/env perl

=pod

=head1 NAME

mark-ls - list the current set of marked files

=head1 SYNOPSIS

  mark-ls  lists the current set of marked files

  USAGE:
    mark ls

=head1 AUTHOR

Brennen Bearnes <bbearnes@gmail.com>

=cut

use strict;
use warnings;
use 5.10.0;

use App::MarkFiles qw(each_path);
use Getopt::Long;
use Pod::Usage;

GetOptions(
  # 'config=s' => \$config_file,
  help => sub { pod2usage(0) },
) or pod2usage(2);

each_path(sub {
  my ($path) = @_;
  say $path;
});



( run in 0.344 second using v1.01-cache-2.11-cpan-d7a12ab2c7f )