From 4ae7c8a53c54c65a1af9a22de6be2f698b105f89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Vi=C3=B1as=20Alcon?= Date: Thu, 23 Nov 2023 00:02:48 +0100 Subject: [PATCH] Fix command --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index 30b430d..b6c8f3e 100644 --- a/bash/README.md +++ b/bash/README.md @@ -51,7 +51,7 @@ function helloApp() { Note that `helloApp` function receives the two other functions as parameters and just executes them. -4. Create a main script [src/hello-bash](src/hello.bash) that just loads the 3 required scripts and executes `helloApp` passing `helloMessage` and `helloConsole` functions as parameters: +4. Create a main script [hello.bash](src/hello.bash) that just loads the 3 required scripts and executes `helloApp` passing `helloMessage` and `helloConsole` functions as parameters: ```shell source "$(dirname "${BASH_SOURCE[0]}")/hello-message.bash"