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
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
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
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.
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
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