Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/equals215/minishell1
B-PSU-110_minishell1
https://github.com/equals215/minishell1
Last synced: 1 day ago
JSON representation
B-PSU-110_minishell1
- Host: GitHub
- URL: https://github.com/equals215/minishell1
- Owner: equals215
- Created: 2018-05-24T12:26:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-24T13:21:57.000Z (over 6 years ago)
- Last Synced: 2023-09-05T23:28:44.766Z (about 1 year ago)
- Language: C
- Size: 18.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# minishell1
B-PSU-110_minishell1The minishell1 is the first step of one of the largest projects of the Epitech's first year, the 42sh.
This shell is based on tcsh shell but in a less complete version.## Compiling
You will need the standard libC and Make.
Just execute the following command :make all clean
## Usage
Start the shell with the following command :./mysh
And then type any command in the prompt.
Dont use "advanced" commands such as :- cd && ls
- cd ; ls
- man google | less
- echo "read man" >> todo_listIn fact only singles commands are supported, any of these commands will return an error.
You can close the shell either with a Ctrl-C, Ctrl-D or the command exit.## Notes
Feel free to submit any ideas or report bugs.
I encourage you to fork the project and use it in any way.