<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic process output in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/process-output/m-p/3608155#M824522</link>
    <description>Dear Sirs/Madam,&lt;BR /&gt;&lt;BR /&gt;I have an output as shown below:&lt;BR /&gt;&lt;BR /&gt;$ ps -ef|grep weblogic&lt;BR /&gt;weblogic 20040 20026  0  Sep 23  ?        2727:09 /opt/bea/jdk131_09/bin/../bin/PA_RISC2.0/native_threads/java -X&lt;BR /&gt;&lt;BR /&gt;I need to know what this path means:&lt;BR /&gt;/opt/bea/jdk131_09/bin/../bin/PA_RISC2.0/native_threads/java -X&lt;BR /&gt;&lt;BR /&gt;Why there is double .. in between ? What does it indicate ? &lt;BR /&gt;&lt;BR /&gt;Why this is not running as from a path like:&lt;BR /&gt;/opt/bea/jdk131_09/bin/PA_RISC2.0/native_threads/java &lt;BR /&gt;&lt;BR /&gt;Secondly, -X stands for what ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Sun, 21 Aug 2005 17:57:49 GMT</pubDate>
    <dc:creator>Shivkumar</dc:creator>
    <dc:date>2005-08-21T17:57:49Z</dc:date>
    <item>
      <title>process output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-output/m-p/3608155#M824522</link>
      <description>Dear Sirs/Madam,&lt;BR /&gt;&lt;BR /&gt;I have an output as shown below:&lt;BR /&gt;&lt;BR /&gt;$ ps -ef|grep weblogic&lt;BR /&gt;weblogic 20040 20026  0  Sep 23  ?        2727:09 /opt/bea/jdk131_09/bin/../bin/PA_RISC2.0/native_threads/java -X&lt;BR /&gt;&lt;BR /&gt;I need to know what this path means:&lt;BR /&gt;/opt/bea/jdk131_09/bin/../bin/PA_RISC2.0/native_threads/java -X&lt;BR /&gt;&lt;BR /&gt;Why there is double .. in between ? What does it indicate ? &lt;BR /&gt;&lt;BR /&gt;Why this is not running as from a path like:&lt;BR /&gt;/opt/bea/jdk131_09/bin/PA_RISC2.0/native_threads/java &lt;BR /&gt;&lt;BR /&gt;Secondly, -X stands for what ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Aug 2005 17:57:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-output/m-p/3608155#M824522</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-08-21T17:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: process output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-output/m-p/3608156#M824523</link>
      <description>There are 2 predefined directories in all Unix systems and they are: . .. (dot and dot-dot). The . in a directory string means current directory and .. means parent directory. If you type the command:&lt;BR /&gt; &lt;BR /&gt;ll -a&lt;BR /&gt; &lt;BR /&gt;and you'll see two directories at the top of the listing, . and .. &lt;BR /&gt; &lt;BR /&gt;Now to answer the question, why have /../ in the path? You'll have to ask the programmers. Unix doesn't care if you use a path like:&lt;BR /&gt; &lt;BR /&gt;cd /dir1/dir2/../dir3/dir4/../../dir5/&lt;BR /&gt; &lt;BR /&gt;What is this really? If you type the command: pwd, you'll find yourself in /dir1/dir5. Is this obfuscation necssary? Doubtful, but then the WebLogic code uses it to locate the path it needs. It just looks very ugly on the command line.&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Aug 2005 20:58:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-output/m-p/3608156#M824523</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-08-21T20:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: process output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-output/m-p/3608157#M824524</link>
      <description>Hi Shiv,&lt;BR /&gt;&lt;BR /&gt;Thats right, its the relative way of addressing the PATH. If you look at /opt/bea/jdk131_09/bin/../bin/PA_RISC2.0/native_threads/java  and /opt/bea/jdk131_09/bin/PA_RISC2.0/native_threads/java &lt;BR /&gt;They both mean the same and the reason why weblogic has the earlier command in ps output is because when it runs weblogic the PATH and BASE is already set to /opt/bea/jdk131_09/bin and to reach the java executable it goes a directory back from base and i.e ../bin and then runs the whole executable.&lt;BR /&gt;Now -X options if you have a look at java -X you'll see it says that The -X options are non-standard and subject to change without notice.&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Aug 2005 21:15:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-output/m-p/3608157#M824524</guid>
      <dc:creator>Rajeev  Shukla</dc:creator>
      <dc:date>2005-08-21T21:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: process output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-output/m-p/3608158#M824525</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;ps -efx|grep weblogic &lt;BR /&gt;&lt;BR /&gt;will give you the full command line.&lt;BR /&gt;&lt;BR /&gt;the -X switch means "print help on non-standard options"&lt;BR /&gt;&lt;BR /&gt;you can get the different switches for the java command by just typing "java" at the command line.&lt;BR /&gt;&lt;BR /&gt;hope this helps too!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Sun, 21 Aug 2005 23:30:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-output/m-p/3608158#M824525</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-08-21T23:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: process output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-output/m-p/3608159#M824526</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;in this case&lt;BR /&gt;/opt/bea/jdk131_09/bin/../bin/PA_RISC2.0/native_threads/java -X&lt;BR /&gt;is the same as&lt;BR /&gt;/opt/bea/jdk131_09/bin/PA_RISC2.0/native_threads/java -X&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Aug 2005 23:51:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-output/m-p/3608159#M824526</guid>
      <dc:creator>Michael Schulte zur Sur</dc:creator>
      <dc:date>2005-08-21T23:51:21Z</dc:date>
    </item>
  </channel>
</rss>

