diff options
| author | mo khan <mo@mokhan.ca> | 2021-02-08 14:34:33 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2021-02-08 14:34:33 -0700 |
| commit | 5917f6ba923e9e551db7d09ee2f83dab765b53b2 (patch) | |
| tree | 84d24743386a8377e28d429dbb6750701e41d811 | |
| parent | c17303ea01e7fda51b957fd67fcd2c4d6f6806ca (diff) | |
chore: add makefile to generate a pdf
| -rw-r--r-- | Makefile | 5 | ||||
| -rw-r--r-- | doc/.gitignore | 1 | ||||
| -rw-r--r-- | doc/assignment1.md | 4 |
3 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..da63cff --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +#!/usr/bin/make -f +SHELL=/bin/sh + +doc/assignment1.pdf : doc/assignment1.md + pandoc doc/assignment1.md -f gfm -s -o doc/assignment1.pdf diff --git a/doc/.gitignore b/doc/.gitignore new file mode 100644 index 0000000..a136337 --- /dev/null +++ b/doc/.gitignore @@ -0,0 +1 @@ +*.pdf diff --git a/doc/assignment1.md b/doc/assignment1.md index 42a6301..38e4b7a 100644 --- a/doc/assignment1.md +++ b/doc/assignment1.md @@ -17,7 +17,7 @@ Instructions: Please answer the following questions in complete sentences. Your A list of signals that can be sent are listed below: ```bash - モ kill -L + $ kill -L 1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL 5) SIGTRAP 6) SIGABRT 7) SIGBUS 8) SIGFPE 9) SIGKILL 10) SIGUSR1 11) SIGSEGV 12) SIGUSR2 13) SIGPIPE 14) SIGALRM 15) SIGTERM @@ -60,7 +60,7 @@ Instructions: Please answer the following questions in complete sentences. Your When this program is run it will print a '.' 5 times and then exit. ```bash - モ ruby lib/sigtrap.rb + $ ruby lib/sigtrap.rb .....done ``` |
