Lines Matching refs:popen
2 Test popen() and pclose function: basic functionality
13 * Prototype: resource popen ( string command, string mode )
20 echo "*** Testing popen(): reading from the pipe ***\n";
25 $file_handle = popen(" echo $string", "r");
29 echo "*** Testing popen(): writing to the pipe ***\n";
31 // popen("sort", "w") fails if variables_order="GPCS"
45 $file_handle = popen("$sysroot/system32/sort", "w");
53 echo "*** Testing popen() and pclose(): return type ***\n";
54 $return_value_popen = popen("echo $string", "r");
63 *** Testing popen(): reading from the pipe ***
65 *** Testing popen(): writing to the pipe ***
70 *** Testing popen() and pclose(): return type ***