Searched refs:shell_exec (Results 1 – 22 of 22) sorted by relevance
7 if (shell_exec('PowerShell -Help') === NULL)14 // command "get-process" is executed using shell_exec, it overwrites the ConsoleTitle with19 // back to the original once shell_exec is done.39 …$loaded_title = shell_exec("PowerShell -NoProfile \"get-process cmd*,powershell* | Select-Object m…
21 return split_words(shell_exec('pgrep -P ' . $ppid));25 return split_words(shell_exec('ps -o pid= -p ' . join(',', $pids)));
32 $ps_output = shell_exec("ps -p $pid -o $ps_process_title_field | tail -n 1");
42 echo trim(shell_exec($cmd)) . "\n";
8 $out = shell_exec($cmd);
10 $cat->show_output('Files: ', trim((string) `cd .`)); // this gives invalid args to shell_exec
14 $output = shell_exec("$php --no-php-ini $file $class 2>&1");
52 $s = trim(shell_exec("wmic OS get FreeVirtualMemory /Value 2>nul"));
22 echo shell_exec("$php -n -f $fn");
8 $codepage = trim(shell_exec("powershell Get-ItemPropertyValue HKLM:\\SYSTEM\\CurrentControlSet\\Con…
21 $result = shell_exec('ls -i SplFileInfo_getInode_basic.txt');
25 $current_commit_hash = trim(shell_exec('git rev-parse origin/' . $branch['ref']));
33 echo shell_exec("$php -n $test_file_escaped");
857 $php_info = shell_exec("$php_escaped $pass_options $info_params $no_file_cache \"$info_file\"");858 define('TESTED_PHP_VERSION', shell_exec("$php_escaped -n -r \"echo PHP_VERSION;\""));862 …$php_info_cgi = shell_exec("$php_cgi_escaped $pass_options $info_params $no_file_cache -q \"$info_…871 …$phpdbg_info = shell_exec("$phpdbg_escaped $pass_options $info_params $no_file_cache -qrr \"$info_…
25 shell_exec("taskkill /T /F /PID {$pid} 2>nul");
21 $res = shell_exec('ps -p ' . $id .' -o "pid,nice"');
50 print(shell_exec(getenv('TEST_PHP_EXECUTABLE_ESCAPED') . " -nf code.php"));
52 print(shell_exec(getenv('TEST_PHP_EXECUTABLE_ESCAPED') . " -n -d default_charset=cp1251 -f code.php…
37 $out = trim(shell_exec($cmd));
513 PHP_FUNCTION(shell_exec) argument
2683 function shell_exec(string $command): string|false|null {}
2530 ZEND_FUNCTION(shell_exec);3168 ZEND_FE(shell_exec, arginfo_shell_exec)
Completed in 44 milliseconds