Fixed README.md
This commit is contained in:
parent
5d68248b18
commit
dd2e2ad50b
1 changed files with 3 additions and 1 deletions
|
@ -1,14 +1,16 @@
|
||||||
# Msh-console
|
# Msh-console
|
||||||
* included flag handling implemented with popt.h;
|
|
||||||
Library that provides a bash-like command line for C++ programs. Features included:
|
Library that provides a bash-like command line for C++ programs. Features included:
|
||||||
|
* included flag handling implemented with popt.h;
|
||||||
* creation of personalized commands in the same thread of the shell or in other threads;
|
* creation of personalized commands in the same thread of the shell or in other threads;
|
||||||
* basic shell functionalities, such as execution of other programs in the system. This is implemented with execvp().
|
* basic shell functionalities, such as execution of other programs in the system. This is implemented with execvp().
|
||||||
|
|
||||||
What is not actually included:
|
What is not actually included:
|
||||||
* advanced shell features, like:
|
* advanced shell features, like:
|
||||||
* piping,
|
* piping,
|
||||||
* redirection,
|
* redirection,
|
||||||
* scripting,
|
* scripting,
|
||||||
* command history.
|
* command history.
|
||||||
|
|
||||||
### Credits
|
### Credits
|
||||||
Code based on "Write a Shell in C" tutorial by Stephen Brennan (http://brennan.io/2015/01/16/write-a-shell-in-c/).
|
Code based on "Write a Shell in C" tutorial by Stephen Brennan (http://brennan.io/2015/01/16/write-a-shell-in-c/).
|
||||||
The code has been slightly modified.
|
The code has been slightly modified.
|
||||||
|
|
Loading…
Reference in a new issue