1LIBSKK(1) General Commands Manual LIBSKK(1)
2
3
4
6 skk - program that emulates Japanese SKK input method
7
9 skk [options]
10
12 skk is a tool that reads key sequences from the standard input and con‐
13 verts them to Japanese text according to a Japanese input method called
14 SKK (Simple Kana to Kanji conversion program).
15
16 More information about the SKK input method itself can be found at:
17 http://openlab.jp/skk/
18
20 The skk command follows the usual GNU command line syntax, with long
21 options starting with two dashes (`-'). A summary of options is
22 included below.
23
24 -h, --help
25 Show summary of options.
26
27 -f, --file-dict=FILE
28 Specify path to a file dictionary.
29
30 -u, --user-dict=FILE
31 Specify path to a user dictionary.
32
33 -s, --skkserv=HOST:PORT
34 Specify host and port running skkserv.
35
36 -r, --rule=RULE
37 Specify typing rule.
38
39 -l, --list-rules
40 List typing rules.
41
43 echo "A i SPC" | skk
44 Converts a capital letter "A" followed by lowercase letter "i"
45 and a space.
46
47 echo "K a p a SPC K a SPC" | skk
48 Converts a capital letter "K" followed by lowercase letters "a",
49 "p", "a", and a space. Then converts a capital letter "K" fol‐
50 lowed by "a" and a space.
51
52 echo "r k" | skk -r tutcode
53 Converts two lowercase letters "r" and "k" with TUT-Code typing
54 rule.
55
56 echo "a (usleep 50000) b (usleep 200000)" | skk -r nicola
57 Converts two lowercase letters "a" and "b" typed with a 50000
58 micro seconds interval, and wait 200000 micro seconds, with
59 NICOLA typing rule.
60
62 libskk was written by Daiki Ueno <ueno@unixuser.org>.
63
64
65
66 5 Jan 2012 LIBSKK(1)