Hi,

On Wed, Nov 17, 2004 at 03:45:51PM -0700, t takahashi wrote:
> Oops, of course I meant to ask if you were suggesting this:
> 
>        while adf-is-full-p
>        do
>                 sleep 10
>                 scanimage ... --batch-count 1 ... > ...
>        done

Try something like this:

count=1
while \
  scanimage -v --batch=aaa--%02d--line300.pnm --batch-count=1 
--batch-start=$count
do  
  sleep 10
  count=$(($count + 1))
done

Bye,
  Henning

Reply via email to