From 88e2115be956266fbbcabd3849dec4e32c5f6ba9 Mon Sep 17 00:00:00 2001 From: Daan Date: Thu, 28 Nov 2024 09:44:35 +0100 Subject: [PATCH] Added new example with a slash! --- examples/echo.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 examples/echo.yaml diff --git a/examples/echo.yaml b/examples/echo.yaml new file mode 100644 index 0000000..2646c4b --- /dev/null +++ b/examples/echo.yaml @@ -0,0 +1,11 @@ +--- +name: "Echo some text in the terminal of the device" +device: raspberrypi5 +variables: + - name: var1 + value: "Testing" + - name: var2 + value: "with a slash!" +tasks: + - name: Echo! + command: "echo {{ var1 }}/{{ var2 }}" \ No newline at end of file