Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

genrb(1) [centos man page]

GENRB(1)							 ICU 50.1.2 Manual							  GENRB(1)

NAME
genrb - compile a resource bundle SYNOPSIS
genrb [ -h, -?, --help ] [ -V, --version ] [ -v, --verbose ] [ -e, --encoding encoding ] [ -j, --write-java [ encoding ] ] [ -s, --sourcedir source ] [ -d, --destdir destination ] [ -i, --icudatadir directory ] bundle ... DESCRIPTION
genrb converts the resource bundle source files passed on the command line to their binary form or to a Java source file for use with ICU4J. The resulting binary files have a .res extension while resource bundle source files typically have a .txt extension. Java source files have a java extension and follow the ICU4J naming conventions. It is customary to name the resource bundles by their locale name, i.e. to use a local identifier for the bundle filename, e.g. ja_JP.txt for Japanese (Japan) data, or root.txt for the root bundle. In any case, genrb will produce a file whose base name is the name of the locale found in the resource file, not the base name of the resource file itself. The binary files can be read directly by ICU, or used by pkgdata(1) for incorporation into a larger archive or library. OPTIONS
-h, -?, --help Print help about usage and exit. -V, --version Print the version of genrb and exit. -v, --verbose Display extra informative messages during execution. -e, --encoding encoding Set the encoding used to read input files to encoding. The default encoding is the invariant (subset of ASCII or EBCDIC) codepage for the system (see section INVARIANT CHARACTERS). The encodings UTF-8, UTF-16BE, and UTF-16LE are automatically detected if a byte order mark (BOM) is present. -j, --write-java [ encoding ] Generate a Java source code for use with ICU4J. An optional encoding for the Java file can be given. -s, --sourcedir source Set the source directory to source. The default source directory is specified by the environment variable ICU_DATA, or the location set when ICU was built if ICU_DATA is not set. -d, --destdir destination Set the destination directory to destination. The default destination directory is specified by the environment variable ICU_DATA or is the location set when ICU was built if ICU_DATA is not set. -i, --icudatadir directory Look for any necessary ICU data files in directory. For example, when processing collation overrides, the file ucadata.dat must be located. The default ICU data directory is specified by the environment variable ICU_DATA. INVARIANT CHARACTERS
The invariant character set consists of the following set of characters, expressed as a standard POSIX regular expression: [a-z]|[A- Z]|[0-9]|_| |+|-|*|/. This is the set which is guaranteed to be available regardless of code page. ENVIRONMENT
ICU_DATA Specifies the directory containing ICU data. Defaults to /usr/share/icu/50.1.2/. Some tools in ICU depend on the presence of the trailing slash. It is thus important to make sure that it is present if ICU_DATA is set. VERSION
50.1.2 COPYRIGHT
Copyright (C) 2000-2002 IBM, Inc. and others. SEE ALSO
derb(1) pkgdata(1) ICU MANPAGE
16 April 2002 GENRB(1)

Check Out this Related Man Page

GENCMN(8)							 ICU 50.1.2 Manual							 GENCMN(8)

NAME
gencmn - generate an ICU memory-mappable data file SYNOPSIS
gencmn [ -h, -?, --help ] [ -v, --verbose ] [ -c, --copyright | -C, --comment comment ] [ -d, --destdir destination ] [ -n, --name name ] [ -t, --type fileext ] [ -S, --source ] [ -e, --entrypoint name ] maxsize [ listfilename ] DESCRIPTION
gencmn takes a set of files and packages them as an ICU memory-mappable data file. The resulting data file can then be used directly by ICU. gencmn reads a list of files to be packaged from either the supplied listfilename file, or from its standard output. It packages all the files from the list that are not bigger than maxsize bytes, except if maxsize is 0, which indicates that there is no size limit on files. OPTIONS
-h, -?, --help Print help about usage and exit. -v, --verbose Display extra informative messages during execution. -c,--copyright Include the ICU copyright notice in the resulting data. -C, --comment comment Include the specified comment in the resulting data instead of the ICU copyright notice. -d, --destdir destination Set the destination directory to destination. The default destination directory is specified by the environment variable ICU_DATA. -n, --name name Set the data name to name instead of the default. This name is also used as the base name of the output. The default name is made of the icudt prefix, followed by a two-digit version number corresponding to the current version of the ICU release, and a single let- ter indicating the endianness of the data (the letter b indicated big endian data, and the letter l indicates little endian ones). -t, --type type Use type as the type of the data. This type is also used as the extension of the generated data file. The default type ie dat. -S, --source Write a C source file with the table of contents of the data. -e, --entrypoint name Set the data entry point (used for linking against the data in a shared library form) to name. The default entry point name is made of the data (set by the -n, --name option) followed by an underscore and the type of the data (set by the -t, --type option). ENVIRONMENT
ICU_DATA Specifies the directory containing ICU data. Defaults to /usr/share/icu/50.1.2/. Some tools in ICU depend on the presence of the trailing slash. It is thus important to make sure that it is present if ICU_DATA is set. VERSION
50.1.2 COPYRIGHT
Copyright (C) 2000-2001 IBM, Inc. and others. SEE ALSO
decmn(8) ICU MANPAGE
5 November 2001 GENCMN(8)
Man Page