From 3ffba1382fdc392d09c38362b2f71795f3fc319a Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud <111567546+Ahmed-Jim1@users.noreply.github.com> Date: Fri, 5 Jul 2024 14:44:02 +0300 Subject: [PATCH] Adding Hello script --- hello.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 hello.sh diff --git a/hello.sh b/hello.sh new file mode 100644 index 0000000..eeba54d --- /dev/null +++ b/hello.sh @@ -0,0 +1,12 @@ +#!/bin/bash + + +function Hello(){ + + read NAME + echo " Hello Mr/Mrs: $NAME" + +} + +Hello +