Back to home page

LXR

 
 

    


Warning, /cpukit/libmisc/shell/README.md is written in an unsupported language. File is not indexed.

0001 Shell
0002 =====
0003 
0004 This directory contains a shell user extension
0005 primary features:
0006 
0007    + create a user shell terminal task.
0008 
0009 This code has not been extensively tested.  It is provided as a tool
0010 for RTEMS users to open more shell terminal.
0011 Suggestions and comments are appreciated.
0012 
0013 NOTES:
0014 
0015 1.  printf() & getchar() works but you can't use 
0016     0,1,2 like fildes. You need to use fileno(stdin),fileno(stdout),...
0017     
0018 2.  You only need a termios dev to start a new session, add your new commands
0019     and enjoy it.
0020 
0021 3.  Telnetd daemon uses this (browse libnetworking/rtems_telnetd)
0022     Enjoy it.
0023 
0024 FUTURE:
0025 
0026 1.  Adding new commands in cmds.c to give file manegement to shell.