#!/usr/bin/env perl
# PODNAME: pdf2json
# ABSTRACT: Command pdf2json of Alien-pdf2json

$|=1;

use strict;
use warnings;
use File::ShareDir ':ALL';
use Path::Class;

my $abs = file(dist_dir('Alien-pdf2json'),'bin','pdf2json')->cleanup->absolute;

exec($abs, @ARGV) or print STDERR "couldn't exec pdf2json: $!";

__END__

=pod

=encoding UTF-8

=head1 NAME

pdf2json - Command pdf2json of Alien-pdf2json

=head1 VERSION

version 0.001

=head1 AUTHOR

Zakariyya Mughal <zmughal@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Zakariyya Mughal.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut
