From 2c6926ba6b07cb5353f2ddbeab4a01d2713f5122 Mon Sep 17 00:00:00 2001 From: Vasyl Meliukh Date: Sun, 5 Sep 2021 11:21:57 +0000 Subject: [PATCH] Test completed --- ex01/hello_world.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ex01/hello_world.sh diff --git a/ex01/hello_world.sh b/ex01/hello_world.sh new file mode 100644 index 0000000..c9d3430 --- /dev/null +++ b/ex01/hello_world.sh @@ -0,0 +1,6 @@ +#!/bin/bash +if [ $@ ]; then + echo "Hello, $@!" +else + echo "Hello, World!" +fi