The /proc filesystem does provide a cwd of the process which combined with a rel2abs() could provide the information desired but since it changes if the script changes - it too is unreliable.

I think is your only option, especially for scripts.

Scripts are really just arguments to proper binary executables. There is no kernel process structure to store the full path to arguments that happen to be file name values.

Also, I hate to bear bad news but, the shell guys can still drive you crazy if they don't put the she-bang at the top of their scripts. Take a look at this:

me@mybox:/home/me/sandbox $ ./2.sh & [1] 417964 me@mybox:/home/me/sandbox $ ps -o pid,args -p 417964 PID COMMAND 417964 -bash me@mybox:/home/me/sandbox $ ./1.sh & [2] 430266 me@mybox:/home/me/sandbox $ ps -o pid,args -p 430266 PID COMMAND 430266 /usr/bin/bash ./1.sh
me@mybox:/home/me/sandbox $ cat 1.sh #!/usr/bin/bash sleep 600 me@mybox:/home/me/sandbox $ cat 2.sh sleep 600

Yes, I use bash on AIX. Linux has spoiled me.


In reply to Re: Working With The Process Table (AIX) by jffry
in thread Working With The Process Table (AIX) by Limbic~Region

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.