From bf3eb5468b7fc8f0fd2e512a4cad6d8c892cf7d4 Mon Sep 17 00:00:00 2001 From: Jimmy Tanagra Date: Tue, 5 Sep 2023 00:38:25 +1000 Subject: [PATCH] Fix markdown-lint error Signed-off-by: Jimmy Tanagra --- docs/examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples.md b/docs/examples.md index ad4733e991..938c32aee7 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -162,7 +162,7 @@ an external command. However, in Ruby it is also possible to use, amongst others - [IO#popen](https://ruby-doc.org/core/IO.html#method-c-popen): a more advanced method of executing an external process. Unlike {OpenHAB::Core::Actions::Exec.execute_command_line execute_command_line} which expects each command -argument to be split up, Ruby's execution methods can accept a single string containing the full command which +argument to be split up, Ruby's execution methods can accept a single string containing the full command which also allows IO redirections / pipe because it spawns a subshell. ```ruby