summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
-rw-r--r--doc/.gitignore1
-rw-r--r--doc/assignment1.md4
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
```