An open API service indexing awesome lists of open source software.

https://github.com/eirinimits/linux-shell

A simple Linux shell written in C
https://github.com/eirinimits/linux-shell

linux shell

Last synced: about 2 months ago
JSON representation

A simple Linux shell written in C

Awesome Lists containing this project

README

          

# Linux-Shell

This project was created for academic purposes on the subject of 'Operating Systems' at the Aristotle University of Thessaloniki.

A simple Linux shell written in C

## Features
### Internal commands:
```
- exit
- clear
- cd
```
### External commands:
```
- I/O redirection via dup2 system call (e.g. > , < > ).
- Pipelining via pipe and dup2 system calls (e.g. | ). Multiple piping is allowed.
- Wildcard character *
```