~ubuntu-branches/ubuntu/maverick/uim/maverick

« back to all changes in this revision

Viewing changes to doc/UIM-SH

  • Committer: Bazaar Package Importer
  • Author(s): Masahito Omote
  • Date: 2008-06-25 19:56:33 UTC
  • mfrom: (3.1.18 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080625195633-8jljph4rfq00l8o7
Tags: 1:1.5.1-2
* uim-tcode: provide tutcode-custom.scm, tutcode-bushudic.scm
  and tutcode-rule.scm (Closes: #482659)
* Fix FTBFS: segv during compile (Closes: #483078).
  I personally think this bug is not specific for uim but is a optimization
  problem on gcc-4.3.1. (https://bugs.freedesktop.org/show_bug.cgi?id=16477)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
uim-sh
2
 
 
3
 
 There is uim interactive shell for debugging, batch processing and
4
 
 serving as generic inferior process.
 
2
======
 
3
 
 
4
uim provides an interactive shell for debugging, batch processing and
 
5
serving as generic inferior process.
 
6
 
5
7
 
6
8
Usage
7
 
 uim-sh [options]
8
 
  -b        batch mode. suppress shell prompts
9
 
  -B        strict batch mode, implies -b. suppress shell prompts and
10
 
            evaluated results
11
 
  -h        show help
 
9
-----
 
10
 
 
11
----------------------------------------------------------------
 
12
 uim-sh [options] [file [arg ...]]
 
13
  -b
 
14
  --batch                 batch mode. suppress shell prompts
 
15
  -B
 
16
  --strict-batch          strict batch mode, implies -b. suppress shell prompts
 
17
                          and evaluated results
 
18
  -r <name>
 
19
  --require-module <name> require module
 
20
  --editline              require editline module for Emacs-like line editing
 
21
  -e <expr>
 
22
  --expression <expr>     evaluate <expr> (after loading the file, and disables
 
23
                          'main' procedure of it)
 
24
  -V
 
25
  --version               show software version
 
26
  -h
 
27
  --help                  show this help
 
28
  file                    absolute path or relative to system scm directory
 
29
  arg ...                 string argument(s) for 'main' procedure of the file
 
30
----------------------------------------------------------------
 
31
 
12
32
 
13
33
Examples
 
34
--------
 
35
 
 
36
----------------------------------------------------------------
14
37
 $ uim-sh
15
38
 uim> (car '(foo bar))
16
39
 foo
22
45
 ()
23
46
 uim> ^D
24
47
 $
 
48
----------------------------------------------------------------
 
49
 
25
50
 
26
51
Debugging with Emacs
 
52
--------------------
 
53
 
27
54
 1. Add following form to your .emacs
28
55
 
29
56
  (setq scheme-program-name "uim-sh")