Re: paths with space in

2006-10-17 Thread Beginner
On 17 Oct 2006 at 17:19, Rob Dixon wrote: > Beginner wrote: > > On 17 Oct 2006 at 15:09, Rob Dixon wrote: > >> > >> my @tif = glob("'$d/*tif'"); > > > > I am pretty sure I had tied this, it looks like it from my post. > > > > No. Check the quotes carefully. You had > > my @tif = glob("$d/*tif

Re: paths with space in

2006-10-17 Thread Rob Dixon
Beginner wrote: On 17 Oct 2006 at 15:09, Rob Dixon wrote: my @tif = glob("'$d/*tif'"); I am pretty sure I had tied this, it looks like it from my post. No. Check the quotes carefully. You had my @tif = glob("$d/*tif"); and I wrote my @tif = glob("'$d/*tif'"); so that the string itself

Re: paths with space in

2006-10-17 Thread Beginner
On 17 Oct 2006 at 15:09, Rob Dixon wrote: > Beginner wrote: > > > > On 17 Oct 2006 at 13:16, Perl beginners wrote: > >> > >> Hi All, > >> > >> I am knocking my head against a wall trying to work with directories > >> with spaces. > >> > >> I need to translate some file paths like the one

Re: paths with space in

2006-10-17 Thread Rob Dixon
Beginner wrote: > > On 17 Oct 2006 at 13:16, Perl beginners wrote: >> >> Hi All, >> >> I am knocking my head against a wall trying to work with directories >> with spaces. >> >> I need to translate some file paths like the one below: >> >> /data/scanning/phil/edits/gary/finished/STI 9-10-06/E0102.

Re: paths with space in

2006-10-17 Thread Beginner
On 17 Oct 2006 at 13:16, Perl beginners wrote: > Hi All, > > I am knocking my head against a wall trying to work with directories > with spaces. > > I need to translate some file paths like the one below: > > /data/scanning/phil/edits/gary/finished/STI 9-10-06/E0102.tif > > into > /var/www/p

paths with space in

2006-10-17 Thread Beginner
Hi All, I am knocking my head against a wall trying to work with directories with spaces. I need to translate some file paths like the one below: /data/scanning/phil/edits/gary/finished/STI 9-10-06/E0102.tif into /var/www/phil/pix/E0102.jpg (I need the path to the tif to make the jpeg). If