added the mandatory library fot the assignment

This commit is contained in:
Patrick Neumann 2018-06-15 12:02:05 +02:00
parent 91ec537e7f
commit 2e68b717e1

10
forensicFunctions.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/bash
function helloPerson {
echo "Hello ${1}"
}
function hello {
echo "Hello World"
}