| Posted by numisys on 05/16/06 14:23 
Hello,
 I figured out with ANSI terminal control codes; here is a little
 example:
 
 <?
 
 $sym = "|/-\\";
 
 while( True )
 for( $i = 0; $i!= 4; $i++ )
 {
 printf( "%s\x1b[D", substr( $sym, $i, 1 ) );
 sleep(.25);
 }
 
 ?>
 
 I tested in a Gentoo 2006.0 using a SSH terminal under Windows
 (PuTTy).
 
 Best,
 
 Sebastian
 [Back to original message] |