From d14a34ba5f9b320ed4d7c12e205e99e90dde93ce Mon Sep 17 00:00:00 2001 From: Julian Noble Date: Sat, 5 Aug 2023 00:23:11 +1000 Subject: [PATCH] README.md markdown changes --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 11c6bd54..58ad14b6 100644 --- a/README.md +++ b/README.md @@ -8,15 +8,16 @@ BSD license ### Features - default ansi color output - toggle with 'colour on' and 'colour off' - experimental functional language features. (will not be performant until more work is done on script compilation) - e.g var_pipe_output.= var_list.= list a b c |> string toupper + e.g + `var_pipe_output.= var_list.= list a b c |> string toupper` - easy execution of externals commands with return of stdout, stderr and the exitcode of the process - - run ... + - `run ...` (return exitcode of process - and allows process writes to stderr/stdout to appear in console as they occur) - - runout ... + - `runout ...` (return stdout of process - no output until completion) - - runerr ... + - `runerr ...` (return stderr of process - no output until completion) - - runx + - `runx ...` (return a dict of stdout stderr exitcode - no output until completion)