• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

AUTHORSH A D11-Dec-201520 21

COPYINGH A D11-Dec-201517.6 KiB341281

ChangeLogH A D11-Dec-2015852 3623

INSTALLH A D11-Dec-20159.3 KiB237179

LicenseH A D11-Dec-20151.1 KiB105

MakefileH A D11-Dec-201522.1 KiB679588

Makefile.amH A D11-Dec-2015466 1812

Makefile.inH A D03-May-202222.2 KiB679590

READMEH A D11-Dec-20151.2 KiB3827

THANKSH A D11-Dec-201529 31

aclocal.m4H A D11-Dec-2015255.5 KiB7,2506,505

autogen.shH A D11-Dec-201584 65

cconv.cH A D11-Dec-201513.2 KiB537419

cconv.hH A D11-Dec-20152 KiB10349

cconv_table.ccH A D11-Dec-2015888.5 KiB13,68013,657

cconv_table.hH A D11-Dec-20151.3 KiB6434

compileH A D11-Dec-20153.6 KiB14379

config.guessH A D11-Dec-201542.4 KiB1,4641,253

config.hH A D11-Dec-20152.2 KiB8223

config.h.inH A D11-Dec-20152.1 KiB8154

configure.acH A D03-May-20221,010 4837

libtoolH A D11-Dec-2015214.1 KiB7,5755,677

ltmain.shH A D11-Dec-2015193.8 KiB6,9125,456

main.cH A D11-Dec-20156.5 KiB277217

missingH A D11-Dec-201510.8 KiB361268

stamp-h1H A D11-Dec-201523 21

test_s2tH A D11-Dec-20151.2 KiB4629

test_t2sH A D11-Dec-20151.1 KiB4529

unicode.cH A D11-Dec-20153.3 KiB12383

unicode.hH A D11-Dec-2015597 236

README

1=== Introduction ===
2This is the new address of https://code.google.com/p/cconv/
3
4A iconv based simplified-traditional chinese conversion tool
5iconv is a open source international text conversion tool, if you do not know iconv, go to http://www.gnu.org/software/libiconv/#introduction to learn more.
6As usual for GNU packages:
7
8$ ./configure --prefix=/usr
9$ make
10$ make install
11
12
13=== Details ===
14
15Base usage:
16Usage: iconv [OPTION...] [FILE]
17Convert encoding of given files from one encoding to another.
18
19 Input/Output format specification:
20  -f, --from-code=NAME       encoding of original text
21  -t, --to-code=NAME         encoding for output
22
23 Information:
24  -l, --list                 list all known coded character sets
25
26 Output control:
27  -o, --output=FILE          output file
28  -?, --help                 Give this help list
29      --usage                Give a short usage message
30  -V, --version              Print program version
31
32Example:
33$ echo "美发现号航天飞机, 上头发奖金;头发应该剪了,后天,皇后" | cconv -f utf-8 -t utf8-tw
34美發現號航天飛機, 上頭發獎金;頭髮應該剪了,後天,皇后
35
36Copyright:
37The cconv program is under MIT.
38