Files
rtems/cpukit/libmisc/shell
Chris Johns 259328a78d cpukit/shell: Control help break with SHELL_LINES env variable.
Control the help command break with the SHELL_LINES evironment variable
where the numeric value is the number of lines to break on. If the
value is 0 the output is not broken. The default is 16 lines.

Add shell documentation for the help command.
2013-12-16 11:59:51 +11:00
..
2013-07-23 15:12:54 +02:00
2013-07-23 15:12:54 +02:00
2013-07-23 15:12:54 +02:00
2013-07-23 15:12:54 +02:00
2013-08-06 11:02:56 +02:00
2013-07-23 15:12:54 +02:00
2012-12-01 09:03:46 +01:00
2013-07-23 15:12:54 +02:00
2013-07-23 15:12:54 +02:00
2013-09-05 12:15:27 -04:00
2012-12-01 09:03:54 +01:00
2013-05-16 11:40:42 +02:00

This directory contains a shell user extension
primary features:

   + create a user shell terminal task.

This code has not been extensively tested.  It is provided as a tool
for RTEMS users to open more shell terminal.
Suggestions and comments are appreciated.

NOTES:

1.  printf() & getchar() works but you can't use 
    0,1,2 like fildes. You need to use fileno(stdin),fileno(stdout),...
    
2.  You only need a termios dev to start a new session, add your new commands
    and enjoy it.

3.  Telnetd daemon uses this (browse libnetworking/rtems_telnetd)
    Enjoy it.

FUTURE:

1.  Adding new commands in cmds.c to give file manegement to shell.