From: "Paul Kraus" <[EMAIL PROTECTED]>
> Secondly I am reading the parameters from a comma delimitated file but
> this is going to be changed to a real config file that is setup like
> [machine name] Password=; Username=; ...

See the Config and INI file related modules on CPAN.
 
> Last but easiest: 
> I know I can condense these into one assignment but I can't figure it
> out for the life of me. $path=$5; $path=~s/ /\\ /g;

($path = $5) =~ s/ /\\ /g;

Jenda
===== [EMAIL PROTECTED] === http://Jenda.Krynicky.cz =====
When it comes to wine, women and song, wizards are allowed 
to get drunk and croon as much as they like.
        -- Terry Pratchett in Sourcery


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to