Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stephen-bunn/tinyshell
A tiny shell interperter written in C
https://github.com/stephen-bunn/tinyshell
Last synced: 29 days ago
JSON representation
A tiny shell interperter written in C
- Host: GitHub
- URL: https://github.com/stephen-bunn/tinyshell
- Owner: stephen-bunn
- License: mit
- Created: 2015-11-04T20:07:46.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-18T20:25:58.000Z (about 9 years ago)
- Last Synced: 2024-11-08T04:10:43.952Z (3 months ago)
- Language: C
- Size: 45.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
################
CS:APP Shell Lab
################Files:
Makefile # Compiles your shell program and runs the tests
README # This file
tsh.c # The shell program that you will write and hand in
tshref # The reference shell binary.# The remaining files are used to test your shell
sdriver.pl # The trace-driven shell driver
trace*.txt # The 15 trace files that control the shell driver
tshref.out # Example output of the reference shell on all 15 traces# Little C programs that are called by the trace files
myspin.c # Takes argument and spins for seconds
mysplit.c # Forks a child that spins for seconds
mystop.c # Spins for seconds and sends SIGTSTP to itself
myint.c # Spins for seconds and sends SIGINT to itself