diff --git a/common.mk.in b/common.mk.in index 53cacf1..d3974ed 100644 --- a/common.mk.in +++ b/common.mk.in @@ -61,3 +61,6 @@ $(OUTDIR)%.der: %.der cp -f $< $@ $(OUTDIR)%.pem: %.pem cp -f $< $@ +$(OUTDIR)%.tar: %.tar + cp -f $< $@ + diff --git a/unix102/Makefile b/unix102/Makefile index 1522002..9683f2b 100644 --- a/unix102/Makefile +++ b/unix102/Makefile @@ -1,3 +1,3 @@ -FILES = index.html cheatsheet.pdf unix101.pdf +FILES = index.html cheatsheet.pdf unix101.pdf vim_exercise.tar RELDIR = unix102/ include ../common.mk diff --git a/unix102/index.xml b/unix102/index.xml index c032894..201105b 100644 --- a/unix102/index.xml +++ b/unix102/index.xml @@ -13,7 +13,14 @@ time.

- Download the slides or cheatsheet handout from UNIX 101. + To begin with the first exercise, you will need the following file. + To download it, execute the following command: +

+      wget http://csclub.uwaterloo.ca/unix102/vim_exercise.tar
+    
+

+

+ You can also download the slides or cheatsheet handout from UNIX 101.

diff --git a/unix102/vim_exercise.tar b/unix102/vim_exercise.tar new file mode 100644 index 0000000..1032a0a Binary files /dev/null and b/unix102/vim_exercise.tar differ