Lines Matching refs:popen
2 Test popen() and pclose function: basic functionality
11 * Prototype: resource popen ( string command, string mode )
18 echo "*** Testing popen(): reading from the pipe ***\n";
23 $file_handle = popen(" echo $string", "r");
27 echo "*** Testing popen(): writing to the pipe ***\n";
29 // popen("sort", "w") fails if variables_order="GPCS"
43 $file_handle = popen("$sysroot/system32/sort", "w");
51 echo "*** Testing popen() and pclose(): return type ***\n";
52 $return_value_popen = popen("echo $string", "r");
61 *** Testing popen(): reading from the pipe ***
63 *** Testing popen(): writing to the pipe ***
68 *** Testing popen() and pclose(): return type ***