<?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: list scheduled backups - command line in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544554#M866166</link>
    <description>I guess I should have been more clear - I am using omniback.&lt;BR /&gt;&lt;BR /&gt;The omnirpt command would be very useful if I can get it to work.  Andreas - I tried what you put on your last posting and received an error message that the parameter string is too long (12:1610) and that there was an error generating the report.  Any suggestions??</description>
    <pubDate>Mon, 25 Jun 2001 13:25:54 GMT</pubDate>
    <dc:creator>karim karim_1</dc:creator>
    <dc:date>2001-06-25T13:25:54Z</dc:date>
    <item>
      <title>list scheduled backups - command line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544549#M866161</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I was hoping someone can tell how I can list scheduled backups using the command line.  I need to know what backups are scheduled for the next year and put the information to Excel.&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Mon, 25 Jun 2001 11:59:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544549#M866161</guid>
      <dc:creator>karim karim_1</dc:creator>
      <dc:date>2001-06-25T11:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: list scheduled backups - command line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544550#M866162</link>
      <description>2 commands spring to mind omnirpt and omnistat ....&lt;BR /&gt;&lt;BR /&gt;I beleive omnirpt only works up to current date and time but reading the omnistat man page I see a -Until date which may prove useful ?</description>
      <pubDate>Mon, 25 Jun 2001 12:09:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544550#M866162</guid>
      <dc:creator>Alex Glennie</dc:creator>
      <dc:date>2001-06-25T12:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: list scheduled backups - command line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544551#M866163</link>
      <description>Hi-&lt;BR /&gt;&lt;BR /&gt;If the backups are scheduled and run automatically (whether setup through SAM or script), you should be able to see the schedule through cron.  Type "crontab -l" to show the listing.  The listing goes by column:  minute  hour  day of month  month  day of week command.  So, for example, an entry of 30 15 * * 1-5 myscript  would run myscript at 3:30 in the afternoon Monday through Friday, every month, regardless of the day.  Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Mark</description>
      <pubDate>Mon, 25 Jun 2001 12:12:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544551#M866163</guid>
      <dc:creator>Mark Vollmers</dc:creator>
      <dc:date>2001-06-25T12:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: list scheduled backups - command line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544552#M866164</link>
      <description>I'm pretty sure "-until" only looks at historical data, not scheduled.  You'll probably have to write an external script, based on what you know the entered schedule to be.&lt;BR /&gt;&lt;BR /&gt;Robin.</description>
      <pubDate>Mon, 25 Jun 2001 12:20:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544552#M866164</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2001-06-25T12:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: list scheduled backups - command line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544553#M866165</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;if you mean Omniback you can do it like this.&lt;BR /&gt;&lt;BR /&gt;omnirpt -report lookup_sch -schedule 189 -tab | grep -v '^#' |tr "\t" ";" | sort -t\; -k4n &amp;gt;schedule.csv&lt;BR /&gt;&lt;BR /&gt;This will list all backup schedules from today to 31. December 2001 into the file schedules.csv&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Mon, 25 Jun 2001 12:41:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544553#M866165</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2001-06-25T12:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: list scheduled backups - command line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544554#M866166</link>
      <description>I guess I should have been more clear - I am using omniback.&lt;BR /&gt;&lt;BR /&gt;The omnirpt command would be very useful if I can get it to work.  Andreas - I tried what you put on your last posting and received an error message that the parameter string is too long (12:1610) and that there was an error generating the report.  Any suggestions??</description>
      <pubDate>Mon, 25 Jun 2001 13:25:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544554#M866166</guid>
      <dc:creator>karim karim_1</dc:creator>
      <dc:date>2001-06-25T13:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: list scheduled backups - command line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544555#M866167</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I do it this way to see them for the next 24 hours:&lt;BR /&gt;&lt;BR /&gt;omnirpt -report lookup_sch -schedule 1 &lt;BR /&gt;&lt;BR /&gt;So do it for the next year, you should be able to do:&lt;BR /&gt;&lt;BR /&gt;omnirpt -report lookup_sch -schedule 365&lt;BR /&gt;&lt;BR /&gt;Hmm.  I tried that last one and I get the same error.  With some trial and error, the highest value that works on my system is 108 days.  Weird.  Smells like a bug to me.&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Jun 2001 13:42:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544555#M866167</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2001-06-25T13:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: list scheduled backups - command line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544556#M866168</link>
      <description>Hi,&lt;BR /&gt;scheduling can only be done using either 'cron' or 'at'</description>
      <pubDate>Mon, 25 Jun 2001 13:58:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544556#M866168</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2001-06-25T13:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: list scheduled backups - command line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544557#M866169</link>
      <description>Thanks everyone.</description>
      <pubDate>Mon, 25 Jun 2001 15:39:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-scheduled-backups-command-line/m-p/2544557#M866169</guid>
      <dc:creator>karim karim_1</dc:creator>
      <dc:date>2001-06-25T15:39:04Z</dc:date>
    </item>
  </channel>
</rss>

