in reply to Re^2: Hijacking perl functions
in thread Hijacking perl functions

I'm curious why you would want that to be the general case for every chmod call? Wouldn't that be better suited as config_chmod since it is so specialized?


___________
Eric Hodges

Replies are listed 'Best First'.
Re^4: Hijacking perl functions
by sweetblood (Prior) on Jul 29, 2004 at 23:37 UTC
    I'm sorry if you got the impression that I wanted to globally replace chmod, I don't, ony in this script. Though I can see where it could be useful in other scripts as well.

    Thanks

    Sweetblood

      In which case you probably don't want to be confusing things by replacing chmod. What you want to do is a completely separate operation and should be called something different.

      Otherwise you'll just confuse everybody. (Including yourself in 6 months time!)