#!/usr/local/bin/php -n
<?php
    
/**
    * o------------------------------------------------------------------------------o
    * | This package is licensed under the Phpguru license 2008. A quick summary is  |
    * | that the code is free to use for non-commercial purposes. For commercial     |
    * | purposes of any kind there is a small license fee to pay. You can read more  |
    * | at:                                                                          |
    * |                  http://www.phpguru.org/static/license.html                  |
    * o------------------------------------------------------------------------------o
    *
    * © Copyright 2008 Richard Heyes
    */

    
require_once('Console_ProgressBar.php');
    
    
$progress = new Console_ProgressBar(25);

    for (
$i=0$i<25; ++$i) {
        
usleep(100000);
        
$progress->Update();
    }
    
    echo 
"\n";
?>