Tools for modeling links between files / URLs / etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
503 B

  1. #!/usr/bin/env perl
  2. =pod
  3. =head1 NAME
  4. mark-ls - list the current set of marked files
  5. =head1 SYNOPSIS
  6. pieces-ls lists the current set of marked files
  7. USAGE:
  8. pieces ls
  9. =head1 AUTHOR
  10. Brennen Bearnes <bbearnes@gmail.com>
  11. =cut
  12. use strict;
  13. use warnings;
  14. use 5.10.0;
  15. use App::Pieces;
  16. use Getopt::Long;
  17. use Pod::Usage;
  18. GetOptions(
  19. # 'config=s' => \$config_file,
  20. help => sub { pod2usage(0) },
  21. ) or pod2usage(2);
  22. App::Pieces->new()->each_address(sub {
  23. my ($path) = @_;
  24. say $path;
  25. });