DS has asked for the wisdom of the Perl Monks concerning the following question:
what I am tryint to do is replace the line#!build default: :object_dir=../objGH060NTSCI nobuild :sourcedirs=../../../nbssbase/xdm/bld :sourcedirs=../../../nbssbase/nvm/bld
with:object_dir=../objGH060NTSCI
I am doing the follwoing , but seems to have problem I dont' see:object_dir=../$vob/$subdir/objGH060NTSCI
do you see the problem there....my $vob = "bllblbl"; my $subdir = "koko"; while (<data>) { s{^:object_dir=.*?([^/]*)$}{:object_dir=../$vob/$baseDir/$1} ; print; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: file data
by larryk (Friar) on Aug 30, 2002 at 15:05 UTC | |
|
Re: file data
by talexb (Chancellor) on Aug 30, 2002 at 15:00 UTC | |
|
Re: file data
by TStanley (Canon) on Aug 30, 2002 at 15:06 UTC | |
| |
|
Re: file data
by krujos (Curate) on Aug 30, 2002 at 15:01 UTC |