#!/bin/sh # # usage : dcgetall # # Get all the pictures from the camera # # Mark Dobie 1997 # # make sure the camera is there dcnpics > /dev/null # get all images from the camera camediaplay -v -b115200 -g -a -N$$.%03d.jpg /dev/cua1 2>&1 # process each file downloaded for i in $$.*.jpg ; do jpgprocess $i done