Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
su - softwareUser -c /path/to/my/script.pl

This should work, but you may also be able to use: fork, POSIX::setuid, exec(). I've used this on with perl 5.8.5 on AIX.

Opening to a file with a variable should work fine. You have this...

my $confgiFile = '/path/to/configFile'; open ( CONFIG, ">$config" ) or die "FATAL :: failure configuring - $!\ +n\n"; print CONFIG $config; # $config is populated much earlier close(CONFIG);

So you are setting $confgiFile to a path, but you are opening $config. Are these two the same here (e.g. is this a typo)? One thing I'd suggest is to put the file name that you pass to 'open' in the 'die' as well so you can sanity check what it is trying to do. The only other thing I can suggest is to check your umask just before the open, though I suspect it's probably ok.


In reply to Re: perl 5.6.1 on AIX 5.1 doesn't open() a $var, only real path by bluto
in thread perl 5.6.1 on AIX 5.1 doesn't open() a $var, only real path by jptxs

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (9)
As of 2024-04-23 08:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found