Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Open Files in Unix

by ikegami (Patriarch)
on Oct 08, 2008 at 01:27 UTC ( [id://715885]=note: print w/replies, xml ) Need Help??


in reply to Open Files in Unix

( The OP is no longer what it was when I replied. The code snippet was changed, and a second code snippet was added. )

There are no syntax errors.

>perl -c script.pl script.pl syntax OK

But that doesn't mean it does what you want it to do.

@logging='find . -name cynlogging.properties';
should be
@logging=`find . -name cynlogging.properties`;

And you need to remove the newlines returned by find by adding
chomp @logging;

Finally, you never write your changes to the file.

Update: Missed one.

Your inner loop modifies $prop repeatedly, but the loop variable is the default $_.
$prop =~ s/DEBUG_MIN/WARN/g;
should be
$_ =~ s/DEBUG_MIN/WARN/g;
which is the same as just
s/DEBUG_MIN/WARN/g;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://715885]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-23 16:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found