[EMAIL PROTECTED] writes:
>like jon i've been taking lots of photos with my olympus d460z. it's a
>nice camera. i've been printing them with an epson stylus photo
>870. for someone on a rather low budget, it's a really nice setup and the
>printout quality is exceptional. the epson printer driver (gimp-print) for
>linux is very good.
I have a sony mvc-73 which is so-so. It's good enough for the web, but
no better. The built-in floppy disk is *insanely* nice, making for
unlimited virtually free "film". It's nice to be able to take a few
photos for someone, hand them the disk and walk away.
And of course, any machine that can read a dos floppy can get the images,
which is very nice if you have exotic gear.
>./bin/wireclient localhost $1 \
>./milan_configs/star.conf &
>sleep 1
># save pid of star
>ps -eo pid,args | grep star.conf | awk '{print $1}' > star.pid
>sleep 4
You don't have to grep the output of ps, sh substitutes the pid
of the last async job for "$!".
ie:
./bin/wireclient localhost $1 \
./milan_configs/star.conf &
sleep 1
# save pid of star
starpid=$!
[...]
# kill star
kill -TERM $starpid
-------- david fischer -------- [EMAIL PROTECTED] -------- www.cca.org --------
---------- never let reason stand in the way of self-confidence ----------