From 2e68b717e1885ea646f1848ee38d0353b270a671 Mon Sep 17 00:00:00 2001 From: Patrick Neumann Date: Fri, 15 Jun 2018 12:02:05 +0200 Subject: [PATCH] added the mandatory library fot the assignment --- forensicFunctions.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 forensicFunctions.sh diff --git a/forensicFunctions.sh b/forensicFunctions.sh new file mode 100644 index 0000000..8441928 --- /dev/null +++ b/forensicFunctions.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +function helloPerson { + echo "Hello ${1}" +} + +function hello { + echo "Hello World" +} +