summaryrefslogtreecommitdiffstats
path: root/tests/function/process
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearKaren Arutyunov2019-01-162-2/+2
|
* Rename .test/test{} to .testscript/testscript{}Boris Kolpackov2018-09-041-1/+1
|
* Add $process.run() and $process.run_regex() functionsBoris Kolpackov2018-06-202-0/+35
$process.run(<prog>[ <args>...]) Return trimmed stdout. $process.run_regex(<prog>[ <args>...], <pat> [, <fmt>]) Return stdout lines matched and optionally processed with regex. Each line of stdout (including the customary trailing blank) is matched (as a whole) against <pat> and, if successful, returned, optionally processed with <fmt>, as an element of a list.