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
- Host: GitHub
- URL: https://github.com/eirinimits/linux-shell
- Owner: EiriniMits
- Created: 2017-11-13T12:56:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-12T08:50:30.000Z (over 8 years ago)
- Last Synced: 2025-02-08T03:45:40.143Z (over 1 year ago)
- Topics: linux, shell
- Language: C
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 *
```