NAME
unicomb - Print Unicode character with combining character
VERSION
This document describes version 0.001 of unicomb (from Perl distribution App-unicomb), released on 2017-05-04.
SYNOPSIS
% unicomb [OPTION]... <SPEC>...
Examples:
# Print x-bar (x with overline)
unicomb x+overline
DESCRIPTION
This utility is a slight convenience for printing Unicode character(s) each with zero or more combining characters.
To print a character with another combining character, you can: 1) look up the combining character using uni from App::Uni, e.g.:
% uni combining | grep -i over
% perl -CO -E'say "x\x{0305}"'
or:
% perl -CO -E'say "x\x{COMBINING OVERLINE}"'
Using this utility, you can also use:
% unicomb x+overline
EXIT CODES
0 on success.
99 on command-line options error.
OPTIONS
--list, -l
List all available combining characters.
FAQ
HOMEPAGE
Please visit the project's homepage at https://metacpan.org/release/App-unicomb.
SOURCE
Source repository is at https://github.com/perlancar/perl-App-unicomb.
BUGS
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=App-unicomb
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.
SEE ALSO
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2017 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.