Previous Section  < Day Day Up >  Next Section

Recipe 6.2. Finding JOE Commands

6.2.1 Problem

How do you make JOE do anything useful? You want a complete command reference for JOE, in all of its personalities. And you want it online, so you can use it while you type.

6.2.2 Solution

Turn on the online help, which is present in every one of JOE's personalities.

To start up JOE with the Help screen turned on, use:

$ joe -help

Do the same for rjoe, jpico, jmacs, and jstar.

6.2.3 Discussion

JOE uses a lot of three-key commands. The caret (^) is the Ctrl key. Hit the first two keys (e.g., ^K) together, then release them and strike the third key. Here are some of the basic Help screen commands:


JOE and RJOE

^K H toggles the Help screen on and off.

Esc . moves forward in the Help screens, Esc , moves backward.


Jpico

^G toggles the Help screen on and off.

Esc . moves forward, Esc , moves backward.


Jmacs

^X H toggles the Help screen on and off.

^X . moves forward, ^X , moves backward.


Jstar

^J toggles the Help screen on and off.

Esc . moves forward, Esc , moves backward.

6.2.4 See Also

  • joe(1)

    Previous Section  < Day Day Up >  Next Section