https://github.com/equals215/minishell1
B-PSU-110_minishell1
https://github.com/equals215/minishell1
Last synced: 2 months ago
JSON representation
B-PSU-110_minishell1
- Host: GitHub
- URL: https://github.com/equals215/minishell1
- Owner: equals215
- Archived: true
- Created: 2018-05-24T12:26:28.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-24T13:21:57.000Z (about 7 years ago)
- Last Synced: 2025-03-12T06:43:47.690Z (4 months ago)
- Language: C
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- 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.