Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

genxlt(1) [hpux man page]

genxlt(1)						      General Commands Manual							 genxlt(1)

NAME
genxlt - generate iconv translation tables SYNOPSIS
[output_filename] [input_filename] DESCRIPTION
generates a compiled, non-readable binary version of the iconv table that is suitable for use by iconv(1) and iconv(3C). If input_filename or output_filename is not supplied, standard input and/or standard output will be used. Since the output of is a binary, non-readable file, if the option is not used, the redirection symbol maybe used to redirect the standard output to a file. Options recognizes the following options: If this option is not selected, the data will be sent to standard output, from where it could be redirected to a file. creates tables that are in a prescribed format and which can be interpreted by the default conversion routines of iconv(3C). The input file has two columns, giving the filecode mapping between the two code sets. The entries are in hexadecimal. The input file must be formatted as two columns of hexadecimal digits. Characters in the first column are translated into the characters in the second column. Lines preceded with in the first column are ignored as comments on all lines except in the case of the following keywords: #Galley: and #What: In addition to the data, which defines the filecode mapping, a Galley character (see iconv(3C)) may also be defined for that particular conversion. This is done by adding the line to the beginning of the input file. The is any multi-byte character (see A What string (see what(1)), may also be defined in the input file using the entry This string may contain information like version number, type of conver- sion, etc., which are not used in any way for the conversions. Note that if the What string is defined, it should appear before the Galley definition. EXTERNAL INFLUENCES
Environment Variables provides a default value for the internationalization variables that are unset or null. If is unset or null, the default value of "C" (see lang(5)) is used. If any of the internationalization variables contains an invalid setting, will behave as if all internationalization variables are set to "C" (see environ(5)). If is set to a non-empty string value, it overrides the values of all the other internationalization variables. determines the locale that should be used to affect the format and contents of diagnostic messages written to standard error and informa- tive messages written to standard output. determines the location of message catalogues for the processing of International Code Set Support Single and multi-byte character code sets are supported. RETURN VALUE
The exit values are: Successful completion. Error condition occurred. EXAMPLES
This example compiles the iconv_input and puts the output binary in The following iconv statement uses the roma8=iso81 table to convert the data_file from code set to code set This is an example of the input_file: WARNINGS
Because will write over the existing table, it is wise to save the existing table into another file before using Warnings are not given for incorrect data in the input_file. You must have super-user privileges to install files in FILES
All tables must be installed in this directory. SEE ALSO
dmpxlt(1), iconv(1), iconv(3C). STANDARDS COMPLIANCE
tables genxlt(1)

Check Out this Related Man Page

iconv(1)						      General Commands Manual							  iconv(1)

NAME
iconv - Converts encoded characters to another codeset SYNOPSIS
iconv -f from_code -t to_code [file...] STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: iconv: XCU5.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. OPTIONS
Specifies the input codeset. Specifies the output codeset. OPERANDS
Specifies one or more files that contain the data to be converted. If this operand is omitted, the standard input is used. DESCRIPTION
The iconv command converts the encoding of characters in file from one coded character set to another and writes the results to standard output. The input and output coded character sets are identified by from_code and to_code. If the file operand is not specified on the command line, the iconv command reads the standard input. The result of specifying invalid characters in the input stream is that the input value is translated to the substitute character. [Tru64 UNIX] Current industry standards do not specify the name format, implementation, and location of the codeset converters used by this command. On this operating system, the command searches directories of algorithmic and table converters to find one that performs the requested conversion. The names of codeset converters adhere to the following format: fromcode_tocode EXIT STATUS
Success. An error occurred. ERRORS
[Tru64 UNIX] You can view the diagnostic messages that may be returned by the iconv command by entering the following commands: cd /usr/lib/nls/msg/en_US.ISO8859-1 dspcat iconv.cat EXAMPLES
The following examples use the iconv command: To convert the contents of the eucJP_data file from the eucJP to the SJIS codeset and save the results in the sjis_data file, enter: iconv -f eucJP -t SJIS eucJP_data > sjis_data To convert the contents of the eucJP_data file from the eucJP codeset to the UCS-4 codeset and save the results in the UCS_4_data file, enter: iconv -f eucJP -t UCS-4 eucJP_data > UCS_4_data ENVIRONMENT VARIABLES
The following environment variables (see i18n_intro(5) and l10n_intro(5)) affect the execution of the iconv command: Specifies a default value for the locale category variables that are not set. If set to a nonempty string value, overrides the values of all other locale variables, including LANG. Determines the locale for interpreting byte sequences as characters in, for example, command parameters. Spec- ifies the locale used to find translations, if any, for the command's message catalogs. [Tru64 UNIX] Specifies the search path used to find locales and the subdirectories that contain codeset converters. The default is /usr/lib/nls/loc. Determines the location of message catalogs for the processing of LC_MESSAGES. FILES
[Tru64 UNIX] Algorithmic converters. [Tru64 UNIX] Table converters. SEE ALSO
Commands: genxlt(1) Functions: iconv(3), iconv_close(3), iconv_open(3) Others: i18n_intro(5), iconv_intro(5), l10n_intro(5), standards(5) Writing Software for the International Market iconv(1)
Man Page