#!/bin/sh # ProcessRaw.sh # 2004-09-19 # Chieh Cheng # GNU General Public LIcense (GPL), Version 2, June 1991 dcraw *.crw filelist=`ls -1` for entry in $filelist do if [ -d $entry ] then cd $entry ProcessRaw.sh cd .. fi done