Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

chardet(1) [linux man page]

CHARDET(1)							   User Commands							CHARDET(1)

NAME
chardet - universal character encoding detector SYNOPSIS
chardet [options] [file ...] DESCRIPTION
Report heuristically-detected character encoding for each file. For every specified file (defaulting to stdin if no files are specified), reads and determines the character encoding of the file content. Reports the name and confidence level for each file's detected character encoding. OPTIONS
-h, --help show this help message and exit SEE ALSO
/usr/share/doc/python-chardet/index.html AUTHOR
chardet module was written by Mark Pilgrim <mark@diveintomark.org> chardet script was written by Ben Finney <ben+python@benfinney.id.au> This manual page was written by Piotr Oarowski <piotr@debian.org>, for the Debian project (but may be used by others). chardet 2.0.1 November 2009 CHARDET(1)

Check Out this Related Man Page

ICONV(1)							 Debian GNU/Linux							  ICONV(1)

NAME
iconv - Convert encoding of given files from one encoding to another SYNOPSIS
iconv -f encoding [-t encoding] [inputfile]... DESCRIPTION
The iconv program converts the encoding of characters in inputfile, or from the standard input if no filename is specified, from one coded character set to another. The result is written to standard output unless otherwise specified by the --output option. --from-code, -f encoding Convert characters from encoding. --to-code, -t encoding Convert characters to encoding. If not specified the encoding corresponding to the current locale is used. --list, -l List known coded character sets. -c Omit invalid characters from output. --output, -o file Specify output file (instead of stdout). --silent, -s Suppress warnings, but not errors. --verbose Print progress information. --help, -? Give help list. --usage Give a short usage message. --version, -V Print program version. ENCODINGS
The values permitted for --from-code and --to-code can be listed by the iconv --list command, and all combinations of the listed values are supported. Furthermore the following two suffixes are supported: //TRANSLIT When the string "//TRANSLIT" is appended to --to-code, transliteration is activated. This means that when a character cannot be represented in the target character set, it can be approximated through one or several similarly looking characters. //IGNORE When the string "//IGNORE" is appended to --to-code, characters that cannot be represented in the target character set will be silently discarded. AUTHOR
iconv was written by Ulrich Drepper as part of the GNU C Library. This man page was written by Joel Klecker <espy@debian.org>, for the Debian GNU/Linux system. 3rd Berkeley Distribution lenny ICONV(1)
Man Page