<?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: unix prefix commands...(nohub) in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/unix-prefix-commands-nohub/m-p/3776242#M102192</link>
    <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Aside from 'nohup' an exceedingly useful one is 'command'.  'command' enables the shell to treat the arguments as a simple command, suppressing the shell function lookup.&lt;BR /&gt;&lt;BR /&gt;If you consider that one of the standard UNIX pardigmns is that processes have a standard input and a standard output stream, then the pipe ("|") is one of the most powerful "commands" enabling the the connection of process streams into "filters".&lt;BR /&gt;&lt;BR /&gt;In addition to the pipe ("|") we could add the 'tee' command taht transcribes the standard input to the standard output and makes copies in the files.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Sun, 23 Apr 2006 13:19:29 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2006-04-23T13:19:29Z</dc:date>
    <item>
      <title>unix prefix commands...(nohub)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-prefix-commands-nohub/m-p/3776241#M102191</link>
      <description>hi,&lt;BR /&gt;how many HPUX prefix commands are there? &lt;BR /&gt;[ p.s.,: prefix commands, which precede another commands. ex:nohub ]</description>
      <pubDate>Sun, 23 Apr 2006 13:06:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-prefix-commands-nohub/m-p/3776241#M102191</guid>
      <dc:creator>inventsekar_1</dc:creator>
      <dc:date>2006-04-23T13:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: unix prefix commands...(nohub)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-prefix-commands-nohub/m-p/3776242#M102192</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Aside from 'nohup' an exceedingly useful one is 'command'.  'command' enables the shell to treat the arguments as a simple command, suppressing the shell function lookup.&lt;BR /&gt;&lt;BR /&gt;If you consider that one of the standard UNIX pardigmns is that processes have a standard input and a standard output stream, then the pipe ("|") is one of the most powerful "commands" enabling the the connection of process streams into "filters".&lt;BR /&gt;&lt;BR /&gt;In addition to the pipe ("|") we could add the 'tee' command taht transcribes the standard input to the standard output and makes copies in the files.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 23 Apr 2006 13:19:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-prefix-commands-nohub/m-p/3776242#M102192</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-04-23T13:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: unix prefix commands...(nohub)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-prefix-commands-nohub/m-p/3776243#M102193</link>
      <description>sekar,&lt;BR /&gt;&lt;BR /&gt;Some more&lt;BR /&gt;xargs - see man xargs&lt;BR /&gt;time - to see execution times of a command.&lt;BR /&gt;nice - to run a command with specific priority&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ninad</description>
      <pubDate>Sun, 23 Apr 2006 13:44:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-prefix-commands-nohub/m-p/3776243#M102193</guid>
      <dc:creator>Ninad_1</dc:creator>
      <dc:date>2006-04-23T13:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: unix prefix commands...(nohub)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-prefix-commands-nohub/m-p/3776244#M102194</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;Another, less common operation is to do:&lt;BR /&gt;&lt;BR /&gt;# sh -c string&lt;BR /&gt;&lt;BR /&gt;This invokes a shell (in this example, the POSIX one) and reads commands from the string argument.&lt;BR /&gt;&lt;BR /&gt;This is one way to create a separate process.  You can see this by doing:&lt;BR /&gt;&lt;BR /&gt;# date; sh -c "export TZ=GMT; date;"; date&lt;BR /&gt;Sun Apr 23 15:03:06 EDT 2006&lt;BR /&gt;Sun Apr 23 19:03:06 GMT 2006&lt;BR /&gt;Sun Apr 23 15:03:06 EDT 2006&lt;BR /&gt;&lt;BR /&gt;As you can see, the GMT timezone was set only for the separate process.  The original shell environment remained undisturbed.&lt;BR /&gt;&lt;BR /&gt;I'll note in passing that could also create a separate process (environment) thusly:&lt;BR /&gt;&lt;BR /&gt;# date; (export TZ=GMT; date); date &lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Sun, 23 Apr 2006 14:10:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-prefix-commands-nohub/m-p/3776244#M102194</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-04-23T14:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: unix prefix commands...(nohub)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-prefix-commands-nohub/m-p/3776245#M102195</link>
      <description>And to add to James' comments, you can temporarily assign a variable for just the duration of a command as in:&lt;BR /&gt; &lt;BR /&gt;TZ=EST5EDT date&lt;BR /&gt;TZ=GMT0 date&lt;BR /&gt; &lt;BR /&gt;In the above examples, the date command is run with a different TZ value. This is a shell construct rather than a command to precede a command.</description>
      <pubDate>Sun, 23 Apr 2006 15:08:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-prefix-commands-nohub/m-p/3776245#M102195</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2006-04-23T15:08:55Z</dc:date>
    </item>
  </channel>
</rss>

