|
|
@ -8,15 +8,16 @@ BSD license |
|
|
|
### Features |
|
|
|
### Features |
|
|
|
- default ansi color output - toggle with 'colour on' and 'colour off' |
|
|
|
- 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) |
|
|
|
- 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 |
|
|
|
- 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) |
|
|
|
(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) |
|
|
|
(return stdout of process - no output until completion) |
|
|
|
- runerr <command> ... |
|
|
|
- `runerr <command> ...` |
|
|
|
(return stderr of process - no output until completion) |
|
|
|
(return stderr of process - no output until completion) |
|
|
|
- runx |
|
|
|
- `runx <command> ...` |
|
|
|
(return a dict of stdout stderr exitcode - no output until completion) |
|
|
|
(return a dict of stdout stderr exitcode - no output until completion) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|