19962010 Ericsson AB. All Rights Reserved. The contents of this file are subject to the Erlang Public License, Version 1.1, (the "License"); you may not use this file except in compliance with the License. You should have received a copy of the Erlang Public License along with this software. If not, it can be retrieved online at http://www.erlang.org/. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. tty - A command line interface ETX/B/SFP C. Granbom EPK/TE (K. Boortz) 1996-11-01 A tty.xml

is a simple command line interface program where keystrokes are collected and interpreted. Completed lines are sent to the shell for interpretation. There is a simple history mechanism, which saves previous lines. These can be edited before sending them to the shell. is started when Erlang is started with the command:

erl

operates in one of two modes:

normal mode, in which lines of text can be edited and sent to the shell.

shell break mode, which allows the user to kill the current shell, start multiple shells etc. Shell break mode is started by typing Control G.

Normal Mode

In normal mode keystrokes from the user are collected and interpreted by . Most of the emacs line editing commands are supported. The following is a complete list of the supported line editing commands.

Note: The notation means pressing the control key and the letter simultaneously. means pressing the key followed by the letter .

Key Sequence Function C-a Beginning of line C-b Backward character M-b Backward word C-d Delete character M-d Delete word C-e End of line C-f Forward character M-f Forward word C-g Enter shell break mode C-k Kill line C-l Redraw line C-n Fetch next line from the history buffer C-p Fetch previous line from the history buffer C-t Transpose characters C-y Insert previously killed text tty text editing
Shell Break Mode

tty enters shell break mode when you type Control G. In this mode you can:

Kill or suspend the current shell

Connect to a suspended shell

Start a new shell