#!perl

use strict;
use warnings;
#use lib::findbin '../lib'; # dev-only
use App::supertouch;

# PODNAME: supertouch
# ABSTRACT: Touch with directories
our $VERSION = '0.01'; # VERSION


exit App::supertouch->main(@ARGV);

__END__

=pod

=encoding UTF-8

=head1 NAME

supertouch - Touch with directories

=head1 VERSION

version 0.01

=head1 SYNOPSIS

 % supertouch foo/bar/baz.txt

=head1 DESCRIPTION

C<supertouch> is a command similar to C<touch>, except it creates the directories structure
necessary if it doesn't already exist.

=head1 OPTIONS

=over 4

=item -v

Turn on verbose mode.

=back

=head1 SEE ALSO

=over 4

=item touch

Unix command touch.

=item L<File::Touch>

Perl module for touching files.

=item L<Path::Tiny>

Perl path handling module which also provides an interface for touching files.

=back

=head1 AUTHOR

Graham Ollis <plicease@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2020 by Graham Ollis.

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
