From 8d5d5d97e6c9f575891c22f80699a51778c669d6 Mon Sep 17 00:00:00 2001 From: olezhokmer2002 Date: Sun, 3 Oct 2021 23:08:35 +0300 Subject: [PATCH] first task --- ex01/hello_world.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 ex01/hello_world.sh diff --git a/ex01/hello_world.sh b/ex01/hello_world.sh new file mode 100755 index 0000000..462292e --- /dev/null +++ b/ex01/hello_world.sh @@ -0,0 +1,6 @@ +if [ -x $1 ] +then + echo Hello, World! +else + echo Hello, $1! +fi