using new commandLine.inc style, readconsole() moved to install-utils()
[lhc/web/wiklou.git] / maintenance / eval.php
1 <?php
2 require_once( "commandLine.inc" );
3
4 do {
5 $line = readconsole( "> " );
6 eval( $line . ";" );
7 if ( function_exists( "readline_add_history" ) ) {
8 readline_add_history( $line );
9 }
10 } while ( 1 );
11
12
13
14
15 ?>
16