<?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: Unable to include commands after calling nohup in shell script in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923339#M408399</link>
    <description>You are correct ,&lt;BR /&gt;But I am talking about the old issues.&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;Everything seems right in your script and it should give the output ,of `at -l` , as when it is printing the string "Scheduled backup" and the next is `at -l`.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Else you can do it like that ,&lt;BR /&gt;&lt;BR /&gt;You can put this commands in the backup script , where the, at command runs .&lt;BR /&gt;&lt;BR /&gt;---------------------------------------&lt;BR /&gt;..&lt;BR /&gt;..&lt;BR /&gt;at -f scname -t time  # assuming this is your at command.&lt;BR /&gt;# add the below lines to get the notification .&lt;BR /&gt;&lt;BR /&gt;echo " at Command executed ..at `date` "&lt;BR /&gt;echo " Now Notifying to the user.."&lt;BR /&gt;at -l &amp;gt; `tty`&lt;BR /&gt;&lt;BR /&gt;####################################&lt;BR /&gt;&lt;BR /&gt;Hope this will help,&lt;BR /&gt;&lt;BR /&gt;Cheers ,&lt;BR /&gt;Raj. &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Sun, 04 Sep 2005 07:34:55 GMT</pubDate>
    <dc:creator>Raj D.</dc:creator>
    <dc:date>2005-09-04T07:34:55Z</dc:date>
    <item>
      <title>Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923321#M408381</link>
      <description>Hi Guys,&lt;BR /&gt;&lt;BR /&gt;I have a script to schedule backups. For this i am using &lt;BR /&gt;nohup sh scriptname &amp;amp;&lt;BR /&gt;&lt;BR /&gt;and within scriptname i have an "at command" to schedule the backup.&lt;BR /&gt;&lt;BR /&gt;The issue is within my backup script i have included as follows:&lt;BR /&gt;&lt;BR /&gt;-----------------------------------------&lt;BR /&gt;nohup scriptname &amp;amp;&lt;BR /&gt;printf "\n\n\n\nScheduled backup at `at -l`"&lt;BR /&gt;------------------------------------------&lt;BR /&gt;&lt;BR /&gt;Even though the backup is getting scheduled, when i try to use prinf to display the time it has been scheduled, it does not print.&lt;BR /&gt;&lt;BR /&gt;Please advice how to invoke enter key since when you execute nohup command it requires an enter key to proceed to the prompt&lt;BR /&gt;&lt;BR /&gt;Please advice how to incorporate this&lt;BR /&gt;&lt;BR /&gt;AJi</description>
      <pubDate>Sun, 04 Sep 2005 04:22:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923321#M408381</guid>
      <dc:creator>Aji Thomas</dc:creator>
      <dc:date>2005-09-04T04:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923322#M408382</link>
      <description>Hi Aji ,&lt;BR /&gt;&lt;BR /&gt;What error are u getting in nohup.out file,&lt;BR /&gt;Pls give some more info abt the script.&lt;BR /&gt;&lt;BR /&gt;Raj.</description>
      <pubDate>Sun, 04 Sep 2005 04:29:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923322#M408382</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-04T04:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923323#M408383</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am not getting any errors while issuing the nohup command, the issue is that the command next which does a printf of the `at -l` does not print, since nohup requires enter key to be pressed.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;AJi</description>
      <pubDate>Sun, 04 Sep 2005 04:36:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923323#M408383</guid>
      <dc:creator>Aji Thomas</dc:creator>
      <dc:date>2005-09-04T04:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923324#M408384</link>
      <description>Hi Aji ,&lt;BR /&gt;&lt;BR /&gt;Hope this will solve the problem,&lt;BR /&gt;&lt;BR /&gt;make the lines like this :&lt;BR /&gt;&lt;BR /&gt;-----------------------------------------&lt;BR /&gt;nohup scriptname &amp;amp;&lt;BR /&gt;echo "\n\n\n\nScheduled backup at `at -l`"&lt;BR /&gt;------------------------------------------&lt;BR /&gt;&lt;BR /&gt;Just replace "printf"  with "echo",&lt;BR /&gt;&lt;BR /&gt;Hope this will work..&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 04 Sep 2005 04:58:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923324#M408384</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-04T04:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923325#M408385</link>
      <description>Hi Aji ,&lt;BR /&gt;&lt;BR /&gt;You can use this also : &lt;BR /&gt;-----------------------------------------&lt;BR /&gt;nohup scriptname &amp;amp;&lt;BR /&gt;print "\n\n\n\nScheduled backup at `at -l`"&lt;BR /&gt;------------------------------------------&lt;BR /&gt;&lt;BR /&gt;print will also work ..&lt;BR /&gt;&lt;BR /&gt;Cheers ,&lt;BR /&gt;Raj.&lt;BR /&gt;</description>
      <pubDate>Sun, 04 Sep 2005 05:13:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923325#M408385</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-04T05:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923326#M408386</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Thanks for the advice,&lt;BR /&gt;But still its not working,&lt;BR /&gt;I tried echo as well as print command.&lt;BR /&gt;Its not showing the output of at -l in the next line after nohup.&lt;BR /&gt;&lt;BR /&gt;Please advice&lt;BR /&gt;AJi</description>
      <pubDate>Sun, 04 Sep 2005 05:25:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923326#M408386</guid>
      <dc:creator>Aji Thomas</dc:creator>
      <dc:date>2005-09-04T05:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923327#M408387</link>
      <description>Hi Aji ,&lt;BR /&gt;&lt;BR /&gt;Try giving  ,  echo "\r"  after the command to execute a Carriage Return.&lt;BR /&gt;&lt;BR /&gt;Raj.</description>
      <pubDate>Sun, 04 Sep 2005 06:05:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923327#M408387</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-04T06:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923328#M408388</link>
      <description>hi raj&lt;BR /&gt;&lt;BR /&gt;"/r" too does'nt work for me&lt;BR /&gt;&lt;BR /&gt;please advice me&lt;BR /&gt;AJi</description>
      <pubDate>Sun, 04 Sep 2005 06:22:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923328#M408388</guid>
      <dc:creator>Aji Thomas</dc:creator>
      <dc:date>2005-09-04T06:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923329#M408389</link>
      <description>HI&lt;BR /&gt;&lt;BR /&gt;I mean echo "\r" &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;AJi</description>
      <pubDate>Sun, 04 Sep 2005 06:24:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923329#M408389</guid>
      <dc:creator>Aji Thomas</dc:creator>
      <dc:date>2005-09-04T06:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923330#M408390</link>
      <description>Seems some problem is going on  , in between the two scripts , &lt;BR /&gt;&lt;BR /&gt;you can also try scheduling the backup through cron :&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;1.30 1 * * 0 /home/backup_script &amp;gt; /dev/null  2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;# at 1.30 Every Sunday.&lt;BR /&gt;---------------------------------------&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You dont need nohup, for this. &lt;BR /&gt;And also wondering why you want to use nohup . Once you given the at command , the backup will be executed at the time , specified by at command , and it will not terminate even you logged out.&lt;BR /&gt;Nohup is useful if you are hangup the session , and not applicable with at and cron. &lt;BR /&gt;&lt;BR /&gt;Hope it may help ,&lt;BR /&gt;&lt;BR /&gt;Raj.&lt;BR /&gt;---&lt;BR /&gt;</description>
      <pubDate>Sun, 04 Sep 2005 06:34:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923330#M408390</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-04T06:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923331#M408391</link>
      <description>sorry , mistake in last posting.&lt;BR /&gt;the cron entry will be like this:&lt;BR /&gt;&lt;BR /&gt;30 1 * * 0 /home/backup_script &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;(to run the backup at every sunday 1.30)&lt;BR /&gt;------&lt;BR /&gt;&lt;BR /&gt;Raj.</description>
      <pubDate>Sun, 04 Sep 2005 06:37:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923331#M408391</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-04T06:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923332#M408392</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;thanks for the update,&lt;BR /&gt;&lt;BR /&gt;I am aware of the cron job. But this scheduling is not an daily activity, so we cannot schedule it as a cronjob. Similarly we are running a menu based script that will delete decide the backup policy, and accordingly it will delete older file and then schedule the at job. Finally it should print at -l to show the backup user that the schedule was successful.&lt;BR /&gt;&lt;BR /&gt;This backup script i am executing with nohup, which causes the issue, that it does not print later.&lt;BR /&gt;&lt;BR /&gt;Please advice me,&lt;BR /&gt;AJi</description>
      <pubDate>Sun, 04 Sep 2005 06:55:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923332#M408392</guid>
      <dc:creator>Aji Thomas</dc:creator>
      <dc:date>2005-09-04T06:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923333#M408393</link>
      <description>Hmm..&lt;BR /&gt;&lt;BR /&gt;So wihout nohup , does the script prints output of at -l .&lt;BR /&gt;&lt;BR /&gt;i.e If you run like this&lt;BR /&gt;&lt;BR /&gt;sh scriptname &amp;amp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Raj.&lt;BR /&gt;----</description>
      <pubDate>Sun, 04 Sep 2005 07:01:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923333#M408393</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-04T07:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923334#M408394</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;yes it works without nohup&lt;BR /&gt;&lt;BR /&gt;But i want to execute within nohup. Please note my question. The issue is with issuing the at -l within nohup command&lt;BR /&gt;&lt;BR /&gt;Please advice&lt;BR /&gt;AJi</description>
      <pubDate>Sun, 04 Sep 2005 07:04:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923334#M408394</guid>
      <dc:creator>Aji Thomas</dc:creator>
      <dc:date>2005-09-04T07:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923335#M408395</link>
      <description>Hi Aji ,&lt;BR /&gt;&lt;BR /&gt;You have wrote the command in two way .&lt;BR /&gt;&lt;BR /&gt;1 nohup sh scriptname &amp;amp;&lt;BR /&gt;&lt;BR /&gt;2.&lt;BR /&gt;-----------------------------------------&lt;BR /&gt;nohup scriptname &amp;amp;&lt;BR /&gt;printf "\n\n\n\nScheduled backup at `at -l`"&lt;BR /&gt;------------------------------------------&lt;BR /&gt;&lt;BR /&gt;The 2nd (nohup) command will run successfully , if you have made the script file executable . That is x flag is set.&lt;BR /&gt;&lt;BR /&gt;Pls check,&lt;BR /&gt;&lt;BR /&gt;Raj.</description>
      <pubDate>Sun, 04 Sep 2005 07:17:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923335#M408395</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-04T07:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923336#M408396</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;the commad is been called as&lt;BR /&gt;&lt;BR /&gt;nohup scriptname &amp;amp;&lt;BR /&gt;</description>
      <pubDate>Sun, 04 Sep 2005 07:20:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923336#M408396</guid>
      <dc:creator>Aji Thomas</dc:creator>
      <dc:date>2005-09-04T07:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923337#M408397</link>
      <description>Hi Aji ,&lt;BR /&gt;&lt;BR /&gt;I am wondeting , why other peoples are not replying to this thread .&lt;BR /&gt;&lt;BR /&gt;May be you have not assigned any points to your queries:&lt;BR /&gt;&lt;BR /&gt;" I have assigned points to   0  of   33  responses to my questions."&lt;BR /&gt;&lt;BR /&gt;or May be today less poeples are online.&lt;BR /&gt;&lt;BR /&gt;-----&lt;BR /&gt;Any way keep on working , the problem will get solve soon.&lt;BR /&gt;&lt;BR /&gt;Cheers.&lt;BR /&gt;Raj.&lt;BR /&gt;</description>
      <pubDate>Sun, 04 Sep 2005 07:21:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923337#M408397</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-04T07:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923338#M408398</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;I too was wondering why others are not replying.&lt;BR /&gt;How can i assign point without getting a solution to my issue.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;AJi</description>
      <pubDate>Sun, 04 Sep 2005 07:23:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923338#M408398</guid>
      <dc:creator>Aji Thomas</dc:creator>
      <dc:date>2005-09-04T07:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923339#M408399</link>
      <description>You are correct ,&lt;BR /&gt;But I am talking about the old issues.&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;Everything seems right in your script and it should give the output ,of `at -l` , as when it is printing the string "Scheduled backup" and the next is `at -l`.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Else you can do it like that ,&lt;BR /&gt;&lt;BR /&gt;You can put this commands in the backup script , where the, at command runs .&lt;BR /&gt;&lt;BR /&gt;---------------------------------------&lt;BR /&gt;..&lt;BR /&gt;..&lt;BR /&gt;at -f scname -t time  # assuming this is your at command.&lt;BR /&gt;# add the below lines to get the notification .&lt;BR /&gt;&lt;BR /&gt;echo " at Command executed ..at `date` "&lt;BR /&gt;echo " Now Notifying to the user.."&lt;BR /&gt;at -l &amp;gt; `tty`&lt;BR /&gt;&lt;BR /&gt;####################################&lt;BR /&gt;&lt;BR /&gt;Hope this will help,&lt;BR /&gt;&lt;BR /&gt;Cheers ,&lt;BR /&gt;Raj. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 04 Sep 2005 07:34:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923339#M408399</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-04T07:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to include commands after calling nohup in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923340#M408400</link>
      <description>Hi raj&lt;BR /&gt;&lt;BR /&gt;The solution provided was GUd, but it does not work in my script&lt;BR /&gt;&lt;BR /&gt;AJ1</description>
      <pubDate>Sun, 04 Sep 2005 08:11:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unable-to-include-commands-after-calling-nohup-in-shell-script/m-p/4923340#M408400</guid>
      <dc:creator>Aji Thomas</dc:creator>
      <dc:date>2005-09-04T08:11:19Z</dc:date>
    </item>
  </channel>
</rss>

