#!perl

# FRAGMENT id=shcompgen-hint command=untabify

our $DATE = '2015-01-31'; # DATE
our $VERSION = '0.01'; # VERSION

use 5.010001;
use strict;
use warnings;

use App::tabify;

App::tabify::parse_cmdline();
App::tabify::run('untabify');

1;
# ABSTRACT: Convert tabs to spaces
# PODNAME: untabify

__END__

=pod

=encoding UTF-8

=head1 NAME

untabify - Convert tabs to spaces

=head1 VERSION

This document describes version 0.01 of untabify (from Perl distribution App-tabify), released on 2015-01-31.

=head1 SYNOPSIS

 untabify [OPTION]... <FILES...>

=head1 DESCRIPTION

=head1 OPTIONS

=over

=item * --tab-width=i, -w (default: 8)

Set tab width.

=item * --(no)indent-only

Not yet implemented.

By default C<untabify> will convert all tabs to spaces. Use C<--indent-only> to
only convert tabs that are at the beginning of lines.

=back

=head1 EXIT CODES

0 on success.

255 on I/O error.

99 on command-line options error.

=head1 FAQ

=head1 SEE ALSO

L<tabify>

=head1 HOMEPAGE

Please visit the project's homepage at L<https://metacpan.org/release/App-tabify>.

=head1 SOURCE

Source repository is at L<https://github.com/perlancar/perl-App-tabify>.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=App-tabify>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=head1 AUTHOR

perlancar <perlancar@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by perlancar@cpan.org.

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
