From 3a79ce9ab7acb4fc37ff7ffa8b4bd3bf9e24771d Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Thu, 3 Sep 2020 23:51:44 +0100 Subject: [PATCH] Add a bash test script --- support/test/bash/test_script | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 support/test/bash/test_script diff --git a/support/test/bash/test_script b/support/test/bash/test_script new file mode 100644 index 0000000..4e27bd9 --- /dev/null +++ b/support/test/bash/test_script @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +function Test() { + echo $1 +} + +for i in "$@"; do + Test $i +done