Rearranged files in lab 8 and added a lab report and some examples

This commit is contained in:
2013-12-28 13:14:33 +01:00
parent 446e0cd44f
commit 656f1a0eb1
8 changed files with 58 additions and 17 deletions

3
Labb8/findconf.awk Normal file
View File

@@ -0,0 +1,3 @@
BEGIN { print "I found the following conf files:\n" }
/^.*\.conf$/ { print $9 } # Changed < to ^ (what does < mean in this context?)
END { print "\nDone." }