File: libreadline-java-doc.README.test

package info (click to toggle)
libreadline-java 0.8.0.1%2Bdfsg-9
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 588 kB
  • sloc: ansic: 1,703; java: 633; makefile: 190
file content (26 lines) | stat: -rw-r--r-- 947 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
libreadline-java Examples
-------------------------

The class test.ReadlineTest illustrates the usage of the Java readline
wrappers.  See the API documentation for further details.

To run this test, simply execute the class test.ReadlineTest (found
beneath this directory), making sure you have the readline wrappers
(/usr/share/java/libreadline-java-<version>.jar) in your classpath.

To explicitly force ReadlineTest to link with your choice of GNU readline,
BSD editline or pure Java (no readline/editline support), pass one of
the following three sets of command-line arguments respectively:

    /etc/inputrc GnuReadline
    /etc/inputrc Editline
    /etc/inputrc PureJava

For example, running

    java -classpath .:/usr/share/java/libreadline-java.jar test.ReadlineTest \
        /etc/inputrc Editline

from this directory will run ReadlineTest linked with BSD editline.

 -- Ben Burton <bab@debian.org>, Wed, 29 Jan 2003 12:31:02 +1100