# 自動フラッシュ有効化 (バッファリングを無効化)
$| = 1;
$end = 10;
for( $i=0; $i<=$end; $i++){
printf( "%d/%d\r", $i, $end );
sleep(1);
}
printf( "\n" );
# 自動フラッシュ無効化 (バッファリングを有効化)
$| = 0;
for( $i=0; $i<=$end; $i++){
printf( "%d/%d\r", $i, $end );
sleep(1);
}
printf( "\n" );
This version of the page was edited by TakeAsh at . View the most recent version.