summaryrefslogtreecommitdiffstats
path: root/hello-alinne.sh
diff options
context:
space:
mode:
Diffstat (limited to 'hello-alinne.sh')
-rwxr-xr-xhello-alinne.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/hello-alinne.sh b/hello-alinne.sh
new file mode 100755
index 0000000..4bd1e70
--- /dev/null
+++ b/hello-alinne.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+
+echo "hello what is your name?"
+
+read name
+
+if [ "$name" = "alinne" ]; then
+ echo "Beautiful name!"
+else
+ echo "hello $name"
+fi