On Sun, 2006-01-29 at 18:05 +0000, znx wrote: > Hi, > > for x in *.JPG; do > if [ ! -e current/$x ]; then > > I can't see anything wrong with this in particular, one thing that > springs to mind is to quote the string that you are testing: > > for x in *.JPG; do > if [ ! -e "current/$x" ]; then > > Hope that helps >
Yep, that worked! Thanks! Hmm, I wonder why it worked before? -- [email protected] mailing list

