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

2
Labb8/listbashusers.awk Normal file
View File

@@ -0,0 +1,2 @@
BEGIN { FS=":"; OFS="\n"; print "The following users uses Bash" }
/\/bin\/bash/ { print $1 }