Browse Source

README.md markdown changes

master
Julian Noble 1 year ago
parent
commit
d14a34ba5f
  1. 11
      README.md

11
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 <comand> ...
- `run <comand> ...`
(return exitcode of process - and allows process writes to stderr/stdout to appear in console as they occur)
- runout <command> ...
- `runout <command> ...`
(return stdout of process - no output until completion)
- runerr <command> ...
- `runerr <command> ...`
(return stderr of process - no output until completion)
- runx
- `runx <command> ...`
(return a dict of stdout stderr exitcode - no output until completion)

Loading…
Cancel
Save