diff options
author | Urban Müller | 2016-01-19 15:33:18 +0100 |
---|---|---|
committer | Urban Müller | 2016-01-19 15:33:18 +0100 |
commit | dc5a7ca1ee4bad12f769046cc68f0891c2e5faef (patch) | |
tree | 74bcedc58deaa3a7ed83d7c1057ae90d1d8d89a7 /it.class | |
parent | 01a6c305cf7683830a9497eb8f124b8420f7100f (diff) | |
download | itools-dc5a7ca1ee4bad12f769046cc68f0891c2e5faef.tar.gz itools-dc5a7ca1ee4bad12f769046cc68f0891c2e5faef.tar.bz2 itools-dc5a7ca1ee4bad12f769046cc68f0891c2e5faef.zip |
better docs
Diffstat (limited to 'it.class')
-rw-r--r-- | it.class | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -532,7 +532,7 @@ static function exec(/* $cmd, $values1 = array(), ... */) * stdout/stderr is forwarded to stdout/stderror of calling script * {keyword} quotes and inserts value from assoc array like ET() * {0} .. {n} quotes and inserts positional arguments - * {-opts} takes an array and inserts options a la it_html attributes (value, true, false or null) + * {-opts} array of opts => {value,true,false,null}: it::exec('ls {-opts}', ['-opts' => ["-l" => true]]); * @param $cmd Format string with {keywords} a la ET() * @param $values (zero, one or more arrays can be passed) * @return exit code of command. @@ -555,8 +555,8 @@ static function system(/* $cmd, $values1 = array(), ... */) /** * Construct shell command - * Keywords {keyword} are replace a la ET(), {-opts} takes an array and - * inserts options a la it_html attributes (value, true, false or null) + * Keywords {keyword} are replace a la ET(), + * {-opts} array of opts => {value,true,false,null}: it::exec('ls {-opts}', ['-opts' => ["-l" => true]]); * @param $cmd Format string with {keywords} replace a la ET() * @param $values (zero, one or more arrays can be passed) * @return output of command. shell errors not detectable, see error_log in /www/server/logs |