<?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: Problem with expression within ksh script. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791173#M943433</link>
    <description>I Hope, The following small script will help you out to solve the date problem.&lt;BR /&gt;&lt;BR /&gt;#Without Mints.&lt;BR /&gt;DATE=`date +%x`                    # Today's Date&lt;BR /&gt;YDATE=`TZ=CST+24 date +%x`         # Yesterday's Date&lt;BR /&gt;echo "Today's Date       :$DATE"&lt;BR /&gt;echo "Yesterday's Date   :$YDATE"&lt;BR /&gt;&lt;BR /&gt;#With Mints.&lt;BR /&gt;DATE=`date +%x" "%X`                    # Today's Date&lt;BR /&gt;YDATE=`TZ=CST+24 date +%x`" "`date +%X` # Yesterday's Date&lt;BR /&gt;echo "Today's Date       :$DATE"&lt;BR /&gt;echo "Yesterday's Date   :$YDATE"</description>
    <pubDate>Thu, 22 Aug 2002 17:53:51 GMT</pubDate>
    <dc:creator>nanthakishore</dc:creator>
    <dc:date>2002-08-22T17:53:51Z</dc:date>
    <item>
      <title>Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791162#M943422</link>
      <description>Hello all&lt;BR /&gt;&lt;BR /&gt;I have been beating myself against the wall with this script of mine for several days. I feel as though i am in the home stretch but I need some help on a few things with it.&lt;BR /&gt;&lt;BR /&gt;1) It seems as though the YDATE variable near the top of the script is not functioning at all by the error i am getting from the expr, any clues there. I have to leave the DATE variable in the current format to match the date fields in my output file.&lt;BR /&gt;&lt;BR /&gt;2) It also seems as though my HTML is not producing a line by line report but more rather a one line report all the way across the screen. If you take the output file attached here and open it with IE you will see what i am having as output. I need to make it so it reports each line as a new line on the report.&lt;BR /&gt;&lt;BR /&gt;TY in advance.&lt;BR /&gt;fg.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;mmdcux17@/home/fgrosb01# ./bpdbjobs.output &lt;BR /&gt;#!/usr/bin/ksh -v&lt;BR /&gt;#&lt;BR /&gt;# This script is being developed to provide a detailed report of the previous day's backup&lt;BR /&gt;# jobs from netbackup. This script will be executed daily at 10:00AM.&lt;BR /&gt;# Upon successful completion, the output from this script will be webified using html and then&lt;BR /&gt;# emailed to the it_backup_admins mailing list.&lt;BR /&gt;#  &lt;BR /&gt;# This script must be executed utlizing the root user account.&lt;BR /&gt;&lt;BR /&gt;# Environmental section&lt;BR /&gt;&lt;BR /&gt;set -u&lt;BR /&gt;&lt;BR /&gt;BASEDIR=/home/fgrosb01&lt;BR /&gt;DATE=`date +%m/%d/%Y`&lt;BR /&gt;FDATE=`date +%m%d%Y`&lt;BR /&gt;YDATE=`expr $DATE - 1`&lt;BR /&gt;expr: An integer value was expected.&lt;BR /&gt;&lt;BR /&gt;SCRIPT_REVISION="HPUX-b.11.00.01"&lt;BR /&gt;SCRIPT_HPUX_VERSION=$(uname -r)&lt;BR /&gt;SCRIPT_SYSTEM=$(uname - n)&lt;BR /&gt;SCRIPT_USER=$(whoami)&lt;BR /&gt;SCRIPT_EXECUTION_TIME=$(date +'%Y/%m/%d/%H:%M:%S')&lt;BR /&gt;MAIL=/usr/bin/mailx&lt;BR /&gt;ADDRESS="frank.grosberger@chsli.org"&lt;BR /&gt;INPUT_FILE=${BASEDIR}/${FDATE}.fullnbujobsreport&lt;BR /&gt;TMP_FILE=${BASEDIR}/${FDATE}.tmpnbujobsreport&lt;BR /&gt;OUTPUT_FILE=${BASEDIR}/${FDATE}.nbujobsreport&lt;BR /&gt;                &lt;BR /&gt;echo $SCRIPT_SYSTEM \(Version $SCRIPT_REVISION\) $SCRIPT_EXECUTION_TIME&lt;BR /&gt;HP-UX (Version HPUX-b.11.00.01) 2002/08/21/15:45:30&lt;BR /&gt;echo _____________________________________________________________________&lt;BR /&gt;_____________________________________________________________________&lt;BR /&gt;echo&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if [ ${SCRIPT_USER} != "root" ] ; then&lt;BR /&gt;   echo&lt;BR /&gt;   echo "This program must be executed utilizing the root logon id only"&lt;BR /&gt;   echo&lt;BR /&gt;   return 501&lt;BR /&gt;fi&lt;BR /&gt;echo _______________________________________________________________________&lt;BR /&gt;_______________________________________________________________________&lt;BR /&gt;###########################################################################&lt;BR /&gt;#&lt;BR /&gt;# This section of the script will execute the bpdbjobs command utilizing &lt;BR /&gt;# the file /home/fgrosb01/.xbpmonrcfg as it's configuration file for the &lt;BR /&gt;# output.&lt;BR /&gt; &lt;BR /&gt;bpdbjobs -header -report -format ${BASEDIR}/.xbpmonrcfg &amp;gt; ${INPUT_FILE}&lt;BR /&gt;&lt;BR /&gt;cat ${INPUT_FILE} | awk 'BEGIN{&lt;BR /&gt;print "&lt;TITLE&gt;Netbackup Daily Report for ${DATE}&lt;/TITLE&gt;";&lt;BR /&gt;print "";&lt;BR /&gt;print "&lt;P&gt;&lt;TABLE border="1" width="\&amp;quot;80%\&amp;quot;"&gt;\n";&lt;BR /&gt;print "&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;jobid&lt;/TD&gt;&lt;TD&gt;jobtype&lt;/TD&gt;&lt;TD&gt;client&lt;/TD&gt;&lt;TD&gt;class&lt;/TD&gt;&lt;TD&gt;schedule&lt;/TD&gt;&lt;TD&gt;server&lt;/TD&gt;&lt;TD&gt;status&lt;/TD&gt;&lt;TD&gt;started};&lt;BR /&gt;{&lt;BR /&gt;jobid=substr($0,1,10);&lt;BR /&gt;jobtype=substr($0,12,11); &lt;BR /&gt;jobstate=substr($0,24,8); &lt;BR /&gt;status=substr($0,33,8); &lt;BR /&gt;class=substr($0,42,27); &lt;BR /&gt;schedule=substr($0,70,18); &lt;BR /&gt;client=substr($0,89,26); &lt;BR /&gt;mediaserver=substr($0,116,26); &lt;BR /&gt;started=substr($0,143,21); &lt;BR /&gt;elapsed=substr($0,165,14); &lt;BR /&gt;ended=substr($0,180,21) &lt;BR /&gt;Kbytes=substr($0,202,13); &lt;BR /&gt;files=substr($0,216,13); &lt;BR /&gt;compestimated=substr($0,230,11); &lt;BR /&gt;printf("&lt;/TD&gt;&lt;TD&gt;%s&lt;/TD&gt;&lt;TD&gt;%s&lt;/TD&gt;&lt;TD&gt;%s&lt;/TD&gt;&lt;TD&gt;%s&lt;/TD&gt;&lt;TD&gt;%s&lt;/TD&gt;&lt;TD&gt;%s&lt;/TD&gt;&lt;TD&gt;%s&lt;/TD&gt;&lt;TD&gt;%s&lt;/TD&gt;&lt;TD&gt;%s&lt;/TD&gt;&lt;TD&gt;%s&lt;/TD&gt;&lt;TD&gt;%s&lt;/TD&gt;&lt;T&gt;&lt;/T&gt;server,status,started,ended,Kbytes,files,compestimated); &lt;BR /&gt;};&lt;BR /&gt;END{&lt;BR /&gt;print "&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;";&lt;BR /&gt;print "";&lt;BR /&gt;}' &amp;gt;${TMP_FILE} &lt;BR /&gt;&lt;BR /&gt;grep -i ${DATE} ${TMP_FILE} &amp;gt; ${OUTPUT_FILE}&lt;BR /&gt;grep -i ${YDATE} ${TMP_FILE} &amp;gt;&amp;gt; ${OUTPUT_FILE}&lt;BR /&gt;&lt;BR /&gt;cat ${OUTPUT_FILE} | $MAIL -s "Netbackup Jobs Report ${SCRIPT_EXECUTION_TIME}" $ADDRESS&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2002 19:04:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791162#M943422</guid>
      <dc:creator>fg_1</dc:creator>
      <dc:date>2002-08-21T19:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791163#M943423</link>
      <description>Since $DATE is in the format MM/DD/YY, then you can't use it in any calculations.&lt;BR /&gt;&lt;BR /&gt;DATE=`date +%m/%d/%Y` &lt;BR /&gt;YDATE=`expr $DATE - 1`&lt;BR /&gt;&lt;BR /&gt;If you want to compute yesterdays date, then&lt;BR /&gt;look into a routine called "caljd.sh". It is a handy script for doing date computations.&lt;BR /&gt;&lt;BR /&gt;Do a search within the forum and you should be able to find it.&lt;BR /&gt;&lt;BR /&gt;Good Luck.&lt;BR /&gt;&lt;BR /&gt;-- Rod Hills&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Aug 2002 19:14:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791163#M943423</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2002-08-21T19:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791164#M943424</link>
      <description>You will need a different solution for YDATE. expr does integer arithmetic, not date arithmetic. So expr does not know how to do:&lt;BR /&gt;&lt;BR /&gt;    08/21/2002 - 1&lt;BR /&gt;&lt;BR /&gt;Any chance you can use the caljd.sh script?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Aug 2002 19:15:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791164#M943424</guid>
      <dc:creator>Tom Maloy</dc:creator>
      <dc:date>2002-08-21T19:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791165#M943425</link>
      <description>I'll address your YDATE problem.&lt;BR /&gt;&lt;BR /&gt;Let's say that DATE = "08/20/2002". Just what is "08/20/2002" - 1? I suupose that you really want yesterday's date in that format. &lt;BR /&gt;&lt;BR /&gt;Look for a thread "Yesterday's Date" that was posted yesterday and today in this Forum.&lt;BR /&gt;The basic idea is this&lt;BR /&gt;YDATE=$(caljd.sh -S "/") $(caljd.sh -p 1))&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Invoke caljd.sh -u for a full usage.&lt;BR /&gt;&lt;BR /&gt;You can find caljd.sh in the mentioned thread.&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Aug 2002 19:20:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791165#M943425</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-08-21T19:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791166#M943426</link>
      <description>For the HTML, could you put a couple of&lt;BR /&gt;&lt;BR /&gt;  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;in the tables?</description>
      <pubDate>Wed, 21 Aug 2002 19:20:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791166#M943426</guid>
      <dc:creator>Tom Maloy</dc:creator>
      <dc:date>2002-08-21T19:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791167#M943427</link>
      <description>Oops, I meant &lt;BR /&gt;YDATE=$(caljd.sh -S "/" $(caljd.sh -p 1)) &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Aug 2002 19:23:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791167#M943427</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-08-21T19:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791168#M943428</link>
      <description>I may be blind but I can't find your  tag.</description>
      <pubDate>Wed, 21 Aug 2002 19:30:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791168#M943428</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-08-21T19:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791169#M943429</link>
      <description>Frank,&lt;BR /&gt;&lt;BR /&gt;For HTML code, their has to be a balance of tags. Here is a sample template showing the tags with their corresponding end-tags.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;__&lt;BR /&gt;____&lt;TITLE&gt;Your Title here&lt;/TITLE&gt;&lt;BR /&gt;__&lt;BR /&gt;__&lt;BR /&gt;____&lt;TABLE border="1" width="80%"&gt;&lt;BR /&gt;______&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;...&lt;/TR&gt;&lt;BR /&gt;______&lt;TR&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;...&lt;/TR&gt;&lt;BR /&gt;______...&lt;BR /&gt;____&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;__&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Ignore the "_", I had those in for indentation purposes only. As you can see  has a  at the end, &lt;TABLE&gt; has a &lt;/TABLE&gt; at the third line from the bottom. Make sure your code follows the structure for it do display correctly. You may want to check out-&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://freespace.virgin.net/sizzling.jalfrezi/iniframe.htm" target="_blank"&gt;http://freespace.virgin.net/sizzling.jalfrezi/iniframe.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;For help with using HTML codes.&lt;BR /&gt;&lt;BR /&gt;Good Luck&lt;BR /&gt;&lt;BR /&gt;-- Rod Hills</description>
      <pubDate>Wed, 21 Aug 2002 19:42:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791169#M943429</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2002-08-21T19:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791170#M943430</link>
      <description>&lt;BR /&gt;Frank,&lt;BR /&gt;&lt;BR /&gt;Sorry, but I don't see an attachment???? Is it there? I have mozilla 1.1 and IE 6+ and neither see it.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In the BEGIN paragraph, the line:&lt;BR /&gt;&lt;BR /&gt;print "jobidjobtypeclientclassscheduleserverstatusstarted&lt;BR /&gt;needs to have ;&lt;BR /&gt;&lt;BR /&gt;The date stuff I think the others have nailed.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Wed, 21 Aug 2002 22:48:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791170#M943430</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-08-21T22:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791171#M943431</link>
      <description>some of those long lines are being truncated by the forum server.&lt;BR /&gt;&lt;BR /&gt;Can you post the script as an attachment?? Maybe in another thread???&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Wed, 21 Aug 2002 22:54:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791171#M943431</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-08-21T22:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791172#M943432</link>
      <description>You want something like&lt;BR /&gt;&lt;BR /&gt;YEAR=`date +%Y`&lt;BR /&gt;DDMM=`date +%d/%m/`&lt;BR /&gt;YEAR=$(( $YEAR - 1 ))&lt;BR /&gt;YDATE="$DDMM$YEAR"&lt;BR /&gt;&lt;BR /&gt;For the HTML output try opening it with Amaya available&lt;BR /&gt;from &lt;A href="http://www.w3c.org." target="_blank"&gt;http://www.w3c.org.&lt;/A&gt;  It should identify your HTML&lt;BR /&gt;problem.  &lt;BR /&gt;&lt;BR /&gt;You could also upload the file to the validator at the same&lt;BR /&gt;site.&lt;BR /&gt;</description>
      <pubDate>Thu, 22 Aug 2002 12:39:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791172#M943432</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2002-08-22T12:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791173#M943433</link>
      <description>I Hope, The following small script will help you out to solve the date problem.&lt;BR /&gt;&lt;BR /&gt;#Without Mints.&lt;BR /&gt;DATE=`date +%x`                    # Today's Date&lt;BR /&gt;YDATE=`TZ=CST+24 date +%x`         # Yesterday's Date&lt;BR /&gt;echo "Today's Date       :$DATE"&lt;BR /&gt;echo "Yesterday's Date   :$YDATE"&lt;BR /&gt;&lt;BR /&gt;#With Mints.&lt;BR /&gt;DATE=`date +%x" "%X`                    # Today's Date&lt;BR /&gt;YDATE=`TZ=CST+24 date +%x`" "`date +%X` # Yesterday's Date&lt;BR /&gt;echo "Today's Date       :$DATE"&lt;BR /&gt;echo "Yesterday's Date   :$YDATE"</description>
      <pubDate>Thu, 22 Aug 2002 17:53:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791173#M943433</guid>
      <dc:creator>nanthakishore</dc:creator>
      <dc:date>2002-08-22T17:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression within ksh script.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791174#M943434</link>
      <description>Frank,&lt;BR /&gt;&lt;BR /&gt;For your date problem. Look no further but the attached script date2julian is extremly handy and it even knows when its eap year. So write your script to use this convertor and forget about it.&lt;BR /&gt;&lt;BR /&gt;===================&lt;BR /&gt;here is how to use it&lt;BR /&gt;========================&lt;BR /&gt;BIN=/usr/local/bin&lt;BR /&gt;DT=`date +%D`&lt;BR /&gt;echo "$DT\nq" | $BIN/logDate2julian | awk '{print $9}' | read DATE&lt;BR /&gt;echo "$DT" | sed "s/\// /gp" | read M D Y   # todays date&lt;BR /&gt;(( YESTERDAY= $DATE - 1 ))&lt;BR /&gt;echo "$YESTERDAY\nq\n" | $BIN/logDate2julian | awk '{print $7}' | read ETAD&lt;BR /&gt;echo "$ETAD" | sed "s/\// /gp" | read MM DD YY   # yesterdays date&lt;BR /&gt;&lt;BR /&gt;=========================&lt;BR /&gt;you can step back any amount of day you desire.&lt;BR /&gt;&lt;BR /&gt;enjoy&lt;BR /&gt;Donny</description>
      <pubDate>Thu, 22 Aug 2002 21:24:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-expression-within-ksh-script/m-p/2791174#M943434</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2002-08-22T21:24:57Z</dc:date>
    </item>
  </channel>
</rss>

