<?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 Re: Difference between $( &amp;lt;command&amp;gt; ) and `&amp;lt;command&amp;gt;` in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890781#M705187</link>
    <description>Hi Paul,&lt;BR /&gt;I cant find my docs...but your issue is with encapsulated variables (variable of (variable...)) &lt;BR /&gt;not very posix...&lt;BR /&gt;I remembered going through such cases and the way out is using eval...&lt;BR /&gt;now an elegant way would be:&lt;BR /&gt;alias sq='sqlplus -s'&lt;BR /&gt;export SQLDBA='sqlplus -s'&lt;BR /&gt;echo $( ${SQLDBA} &amp;lt;&amp;lt;-EOF&lt;BR /&gt;/ as sysdba&lt;BR /&gt;set head off;&lt;BR /&gt;select value from v\$nls_parameters where parameter = 'NLS_CHARACTERSET';&lt;BR /&gt;exit;&lt;BR /&gt;-EOF&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;All the best&lt;BR /&gt;Victor</description>
    <pubDate>Fri, 11 Mar 2005 11:28:54 GMT</pubDate>
    <dc:creator>Victor BERRIDGE</dc:creator>
    <dc:date>2005-03-11T11:28:54Z</dc:date>
    <item>
      <title>Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890778#M705184</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;Since a POSIX course at HP I learned to write proper POSIX, so I always use $( &lt;COMMAND&gt; ).&lt;BR /&gt;But today I tried to fill a variable with an SQL*PLUS query and came up with an issue.&lt;BR /&gt;With the following example I will try to explain the problem:&lt;BR /&gt;&lt;BR /&gt;$export SQLDBA='sqlplus -s'&lt;BR /&gt;$echo $( ${SQLDBA} &amp;lt;&amp;lt;-EOF&lt;BR /&gt;  / as sysdba&lt;BR /&gt;  set head off&lt;BR /&gt;  select value from v\\$nls_parameters where parameter = 'NLS_CHARACTERSET';&lt;BR /&gt;  exit;&lt;BR /&gt;  EOF )&lt;BR /&gt;sh: nls_parameters: Parameter not set.&lt;BR /&gt;&lt;BR /&gt;echo ` ${SQLDBA} &amp;lt;&amp;lt;-EOF&lt;BR /&gt;  / as sysdba&lt;BR /&gt;  set head off&lt;BR /&gt;  select value from v\\$nls_parameters where parameter = 'NLS_CHARACTERSET';&lt;BR /&gt;  exit;&lt;BR /&gt;  EOF `&lt;BR /&gt;AL32UTF8 &lt;BR /&gt;&lt;BR /&gt;I thought it wouldn't matter which method to use. Did I just find a crop circle? &lt;BR /&gt;&lt;BR /&gt;I prefer to use the $( ) method, so can anyone explain this behaviour and tell me how to use $( )? In fact I want to fill a variable, so in my script the “echo” will  be replaced by “VAR=”&lt;BR /&gt;&lt;BR /&gt;Thanks in ad&lt;/COMMAND&gt;</description>
      <pubDate>Fri, 11 Mar 2005 09:54:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890778#M705184</guid>
      <dc:creator>Paul_212</dc:creator>
      <dc:date>2005-03-11T09:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890779#M705185</link>
      <description>I see tons of errors in your first example:&lt;BR /&gt;$export --&amp;gt; export&lt;BR /&gt;$echo ---&amp;gt; echo&lt;BR /&gt;heredocs &amp;lt;&amp;lt;-EOF but terminated by EOF&lt;BR /&gt;An extra backslash before $&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This should be much closer to functional code:&lt;BR /&gt;&lt;BR /&gt;export SQLDBA='sqlplus -s'&lt;BR /&gt;echo $( ${SQLDBA} &amp;lt;&amp;lt;-EOF&lt;BR /&gt;/ as sysdba&lt;BR /&gt;set head off;&lt;BR /&gt;select value from v\$nls_parameters where parameter = 'NLS_CHARACTERSET';&lt;BR /&gt;exit;&lt;BR /&gt;-EOF&lt;BR /&gt;)&lt;BR /&gt;</description>
      <pubDate>Fri, 11 Mar 2005 11:02:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890779#M705185</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-03-11T11:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890780#M705186</link>
      <description>I'd say those extra $ are probably just command line prompts and for a heredoc&lt;BR /&gt;if &amp;lt;&amp;lt;- is used, leading tabs are ignored&lt;BR /&gt;&lt;BR /&gt;as it looks like they are running this from the command line it would be interesting to know if the results are the same from a file.</description>
      <pubDate>Fri, 11 Mar 2005 11:27:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890780#M705186</guid>
      <dc:creator>c_51</dc:creator>
      <dc:date>2005-03-11T11:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890781#M705187</link>
      <description>Hi Paul,&lt;BR /&gt;I cant find my docs...but your issue is with encapsulated variables (variable of (variable...)) &lt;BR /&gt;not very posix...&lt;BR /&gt;I remembered going through such cases and the way out is using eval...&lt;BR /&gt;now an elegant way would be:&lt;BR /&gt;alias sq='sqlplus -s'&lt;BR /&gt;export SQLDBA='sqlplus -s'&lt;BR /&gt;echo $( ${SQLDBA} &amp;lt;&amp;lt;-EOF&lt;BR /&gt;/ as sysdba&lt;BR /&gt;set head off;&lt;BR /&gt;select value from v\$nls_parameters where parameter = 'NLS_CHARACTERSET';&lt;BR /&gt;exit;&lt;BR /&gt;-EOF&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;All the best&lt;BR /&gt;Victor</description>
      <pubDate>Fri, 11 Mar 2005 11:28:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890781#M705187</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2005-03-11T11:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890782#M705188</link>
      <description>Sorry&lt;BR /&gt;alias sq='sqlplus -s'&lt;BR /&gt;&lt;BR /&gt;echo $( ${sq} &amp;lt;&amp;lt;-EOF&lt;BR /&gt;/ as sysdba&lt;BR /&gt;set head off;&lt;BR /&gt;select value from v\$nls_parameters where parameter = 'NLS_CHARACTERSET';&lt;BR /&gt;exit;&lt;BR /&gt;-EOF&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;Was what I wanted...&lt;BR /&gt;&lt;BR /&gt;All the best&lt;BR /&gt;Victor</description>
      <pubDate>Fri, 11 Mar 2005 11:31:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890782#M705188</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2005-03-11T11:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890783#M705189</link>
      <description>You are quite correct about the &amp;lt;&amp;lt;-EOF although my "standard" heredocs marker is always !EOF! because it stands out so well and there is no possible confusion of dashes and tildes on small fonts. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 11 Mar 2005 11:52:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890783#M705189</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-03-11T11:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890784#M705190</link>
      <description>The grave accent marks `` are deprecated (not recommended) in all the POSIX shell man pages (sh-posix, ksh, etc). $(...) are strongly recommended for two reasons:&lt;BR /&gt; &lt;BR /&gt;1. `` is much too easily confused with '' so copying a script (by someone unfamiliar with the proper usage of grave accent marks) usually has a lot of errors, and&lt;BR /&gt; &lt;BR /&gt;2. grave accent marks cannot be nested so you can't use the result of one process (command substitution) as a parameter to another process which is itself being used as a command substitution. &lt;BR /&gt;</description>
      <pubDate>Fri, 11 Mar 2005 14:09:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890784#M705190</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-03-11T14:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890785#M705191</link>
      <description>Hi guys, &lt;BR /&gt;&lt;BR /&gt;Thanks all for the quick responses. I'm sorry for the leading '$'. That was only the prompt copied and pasted. Maybe that wasn't really handy...&lt;BR /&gt;The extra minus sign in my heredoc was indeed to ignore leading tabs.&lt;BR /&gt;The code is in a function in a script and will be used by another function (which is still in the pen).&lt;BR /&gt;If executed from a script (with the braces), an "l" (like ls with IFS=\040) of the current working is given, together with an ORA-902 ERROR.&lt;BR /&gt;&lt;BR /&gt;Like I asked before: Why does the POSIX method act differently (thus incorrect) than the Bourne method while using the identical syntax??&lt;BR /&gt;&lt;BR /&gt;The issue isn't really the heredocs or the aliases, but the fact that using a dollar {$} and quotes {'} make that POSIX doesn't work and Bourne is successful?&lt;BR /&gt;&lt;BR /&gt;The actual code is:&lt;BR /&gt;# make this one global, it will be used more often&lt;BR /&gt;export SQLDBA='sqlplus -s' &lt;BR /&gt;&lt;BR /&gt;function f_get_charset&lt;BR /&gt;{&lt;BR /&gt;  CHARSET=$(&lt;BR /&gt;    ${SQLDBA} &amp;lt;&amp;lt;-EOF&lt;BR /&gt;    / as sysdba&lt;BR /&gt;    set head off&lt;BR /&gt;    select value from v\\$nls_parameters where parameter = 'NLS_CHARACTERSET';&lt;BR /&gt;    exit;&lt;BR /&gt;    EOF &lt;BR /&gt;  )&lt;BR /&gt;  # End of f_get_charset&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Any suggestions? I really want to use POSIX, because I like (good) standards and don't want to let my scripts getting messy.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!</description>
      <pubDate>Fri, 11 Mar 2005 17:23:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890785#M705191</guid>
      <dc:creator>Paul_212</dc:creator>
      <dc:date>2005-03-11T17:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890786#M705192</link>
      <description>the $() method you need to use v\$nls_parameters (only one backslash)&lt;BR /&gt;&lt;BR /&gt;the `` method you need to use v\\$nls_parameters (two backslashes)&lt;BR /&gt;&lt;BR /&gt;why?&lt;BR /&gt;from the man page:&lt;BR /&gt;Command Substitution&lt;BR /&gt;      The standard output from a command enclosed in parenthesis preceded by a dollar sign ($(...)) or a pair of grave accents (`...`) can be used as part or all of a word; trailing newlines are removed.  In the second (archaic) form, the string between the accents is processed for special quoting characters before the command is executed.  See the "Quoting" subsection. &lt;BR /&gt; &lt;BR /&gt;Inside grave accent marks (`...`), \ quotes the characters \, `, and $. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;as an example try this&lt;BR /&gt;&lt;BR /&gt;echo "$(cat &amp;lt;&amp;lt;-ABC&lt;BR /&gt;from v\$nls_parameters&lt;BR /&gt;ABC&lt;BR /&gt;)"&lt;BR /&gt;echo `cat &amp;lt;&amp;lt;-ABC&lt;BR /&gt;from v\\$nls_parameters&lt;BR /&gt;ABC&lt;BR /&gt;`&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 11 Mar 2005 19:27:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890786#M705192</guid>
      <dc:creator>c_51</dc:creator>
      <dc:date>2005-03-11T19:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890787#M705193</link>
      <description>Hi Paul, &lt;BR /&gt;&lt;BR /&gt;I Tried with a "set -x" at the first line of the function (That's debug mode).&lt;BR /&gt;When I try your syntax, I found out that the single qoutes are changed into double quotes.&lt;BR /&gt;Look in the man-pages in the section "Quoting" for a solution.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Rene</description>
      <pubDate>Tue, 15 Mar 2005 04:49:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890787#M705193</guid>
      <dc:creator>renarios</dc:creator>
      <dc:date>2005-03-15T04:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890788#M705194</link>
      <description>Hi guys,&lt;BR /&gt;&lt;BR /&gt;Thanks a lot! I realy helped me until I added the where clause. It turns out that command subsitution with parenthesis $() turns hard quoting '' into soft quoting "", which Oracle can't handle. I can't find the solution in the sh-posix man pages. &lt;BR /&gt;I added the relevan part of the script.&lt;BR /&gt;&lt;BR /&gt;Anyone ideas?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Mar 2005 05:53:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890788#M705194</guid>
      <dc:creator>Paul_212</dc:creator>
      <dc:date>2005-03-15T05:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890789#M705195</link>
      <description>Since you're not using any variables in your hereis doc, try just quoting the EOF:&lt;BR /&gt; &lt;BR /&gt;&amp;lt;&amp;lt;-"EOF"&lt;BR /&gt;/ as sysdba&lt;BR /&gt;set head off&lt;BR /&gt;select value from v$nls_parameters where parameter = 'NLS_CHARACTERSET';&lt;BR /&gt;exit;&lt;BR /&gt;EOF&lt;BR /&gt; &lt;BR /&gt;The quoted EOF prevents evaluation of $vars and preserves the single quotes.&lt;BR /&gt; &lt;BR /&gt;hth&lt;BR /&gt;bv&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Mar 2005 08:08:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890789#M705195</guid>
      <dc:creator>Bob_Vance</dc:creator>
      <dc:date>2005-03-15T08:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890790#M705196</link>
      <description>Hi Bob,&lt;BR /&gt;&lt;BR /&gt;Thanks for your reply. &lt;BR /&gt;Alas is that not the solution to my case.&lt;BR /&gt;My issue is not the $, but the '&lt;BR /&gt;Let me try to explain it with an example:&lt;BR /&gt;&lt;BR /&gt;If I type the following:&lt;BR /&gt;&lt;BR /&gt;echo $(cat &amp;lt;&amp;lt;-"EOF"&lt;BR /&gt;  'NLS_CHARACTERSET'&lt;BR /&gt; EOF&lt;BR /&gt; )&lt;BR /&gt;The reply I'd like is:&lt;BR /&gt;'NLS_CHARACTERSET'   (single-quoted)&lt;BR /&gt;The reply I get is:&lt;BR /&gt;"NLS_CHARACTERSET"   (double-quoted)&lt;BR /&gt;&lt;BR /&gt;If I use ` ` in stead of $( ), it works fine!&lt;BR /&gt;How can I work around this issue?&lt;BR /&gt;&lt;BR /&gt;Many thanks ins advance!</description>
      <pubDate>Tue, 15 Mar 2005 08:30:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890790#M705196</guid>
      <dc:creator>Paul_212</dc:creator>
      <dc:date>2005-03-15T08:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890791#M705197</link>
      <description>not exactly a solution, but it is a work around.  try:&lt;BR /&gt;&lt;BR /&gt;a="'NLS_CHARACTERSET'"&lt;BR /&gt;echo "$(cat &amp;lt;&amp;lt;-EOF&lt;BR /&gt;$a&lt;BR /&gt;EOF&lt;BR /&gt;)"</description>
      <pubDate>Tue, 15 Mar 2005 09:40:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890791#M705197</guid>
      <dc:creator>c_51</dc:creator>
      <dc:date>2005-03-15T09:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890792#M705198</link>
      <description>Thanks! That's it! &lt;BR /&gt;&lt;BR /&gt;Ten points, dix points, tien punten!&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Mar 2005 09:55:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890792#M705198</guid>
      <dc:creator>Paul_212</dc:creator>
      <dc:date>2005-03-15T09:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between $( &lt;command&gt; ) and `&lt;command&gt;`</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890793#M705199</link>
      <description>closing thread now. &lt;BR /&gt;Solution is:&lt;BR /&gt;&lt;BR /&gt;SQLDBA="sqlplus -s"  # Use "silent" SQL*PLUS&lt;BR /&gt;function f_get_charset&lt;BR /&gt;{&lt;BR /&gt; par="'NLS_CHARACTERSET'"&lt;BR /&gt; CHARSET=$(${SQLDBA} &amp;lt;&amp;lt;-EOF&lt;BR /&gt; / as sysdba&lt;BR /&gt;  set head off&lt;BR /&gt;  select value &lt;BR /&gt;  from v\$nls_parameters &lt;BR /&gt;  where parameter = $par;&lt;BR /&gt;  exit;&lt;BR /&gt; EOF )&lt;BR /&gt;echo charset=${CHARSET}&lt;BR /&gt;}&lt;BR /&gt;f_get_charset</description>
      <pubDate>Tue, 15 Mar 2005 09:58:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-lt-command-gt-and-lt-command-gt/m-p/4890793#M705199</guid>
      <dc:creator>Paul_212</dc:creator>
      <dc:date>2005-03-15T09:58:23Z</dc:date>
    </item>
  </channel>
</rss>

