Files
rtems/cpukit/libmisc/shell
Joel Sherrill 9b4422a251 Remove All CVS Id Strings Possible Using a Script
Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines
  next to each other after Id string line removed.
+ remove entire comment blocks which only exited to
  contain CVS Ids
+ If the processing left a blank line at the top of
  a file, it was removed.
2012-05-11 08:44:13 -05:00
..
2008-08-21 12:29:02 +00:00
2009-06-12 05:51:43 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2009-10-22 04:29:32 +00:00
2009-11-29 12:12:39 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00: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.