https://github.com/kayoyin/shlab
CSE205 Computer Architecture: implementation of a Unix shell supporting job control (90/90)
https://github.com/kayoyin/shlab
job-control process-control shell signalling unix-shell
Last synced: 3 months ago
JSON representation
CSE205 Computer Architecture: implementation of a Unix shell supporting job control (90/90)
- Host: GitHub
- URL: https://github.com/kayoyin/shlab
- Owner: kayoyin
- Created: 2019-05-17T20:03:44.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-05T18:06:13.000Z (almost 6 years ago)
- Last Synced: 2024-12-29T12:46:41.353Z (5 months ago)
- Topics: job-control, process-control, shell, signalling, unix-shell
- Language: C
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
#################
CSE 205 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