The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Convert::TBX::UTX - Convert TBX-Min to UTX or UTX to TBX-Min

VERSION

version 0.032

SYNOPSIS

        use Convert::TBX::UTX 'min2utx';
        min2utx('/path/to/file' [, '/path/to/output']); # string pointer okay too
        
        use Convert::TBX::UTX 'utx2min';
        utx2min('/path/to/file' [, '/path/to/output']); # string pointer okay too
        
        
        (in Terminal)
        -$ tbx2utx '/path/to/file' '/path/to/output'
        -$ utx2tbx '/path/to/file' '/path/to/output'
 

DESCRIPTION

This module converts TBX-Min XML into TBX-Basic XML.

FUNCTIONS

min2utx

Converts TBX-Min into UTX format. 'Input' can be either filename or scalar ref containing scalar data. If given only 'input' it returns a scalar ref containing the converted data. If given both 'input' and 'output', it will print converted data to the 'output' file.

utx2min

Converts UTX into TBX-Min format. 'Input' can be either filename or scalar ref containing scalar data. If given only 'input' it returns a scalar ref containing the converted data. If given both 'input' and 'output', it will print converted data to the 'output' file.

TERMINAL COMMANDS

tbx2utx

Converts TBX-Min into UTX format. Input must be filename and Output must be desired output filename.

utx2tbx

Converts UTX into TBX-Min format. Input must be filename and Output must be desired output filename.

AUTHOR

James Hayes <james.s.hayes@gmail.com>, Nathan Glenn <garfieldnate@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Alan Melby.

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