/[cvs.andrew.net.au]/disruptive/progressbars/makebars
ViewVC logotype

Contents of /disruptive/progressbars/makebars

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (show annotations)
Tue May 3 08:11:26 2005 UTC (18 years, 5 months ago) by mikal
Branch: MAIN
CVS Tags: HEAD
Mikal: Generated content, and progress bars

1 #!/bin/bash
2
3 # Draw all the progress bars we need
4 # Copyright (C) Michael Still 2005
5 # Written 27 March 2005
6
7 mkdir -p ../html/progress
8
9 steps=1
10 while [ $steps -lt 21 ]
11 do
12 count=0
13 while [ $count -lt $(( $steps + 1 )) ]
14 do
15 ./makebar $count $steps > ../html/progress/bar-`printf "%03d" $count`of`printf "%03d" $steps`.png
16 count=$(( $count + 1 ))
17 done
18
19 steps=$(( $steps + 1 ))
20 done

  ViewVC Help
Powered by ViewVC 1.1.22