<?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: Help with a script in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111288#M446004</link>
    <description>&amp;gt; I tried adding the cat in front and I still&lt;BR /&gt;&amp;gt; only get /tmp/testfile.out. Not sure&lt;BR /&gt;&amp;gt; why....&lt;BR /&gt;&lt;BR /&gt;Probably because you didn't do exactly what&lt;BR /&gt;was suggested, and there's a difference&lt;BR /&gt;between "'" and "`".&lt;BR /&gt;&lt;BR /&gt;td192&amp;gt; cat f3.dat&lt;BR /&gt;aaa&lt;BR /&gt;bbb&lt;BR /&gt;td192&amp;gt; cat f3.sh&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;for file in ` cat f3.dat `; do&lt;BR /&gt;    echo $file&lt;BR /&gt;done&lt;BR /&gt;td192&amp;gt; ./f3.sh&lt;BR /&gt;aaa&lt;BR /&gt;bbb&lt;BR /&gt;&lt;BR /&gt;As usual, a precise and accurate description&lt;BR /&gt;of what you did, and what happened when you&lt;BR /&gt;did it, might be helpful.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] my only problem now [...]&lt;BR /&gt;&lt;BR /&gt;Oh, I doubt that.</description>
    <pubDate>Thu, 29 May 2008 17:39:40 GMT</pubDate>
    <dc:creator>Steven Schweda</dc:creator>
    <dc:date>2008-05-29T17:39:40Z</dc:date>
    <item>
      <title>Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111279#M445995</link>
      <description>I am trying to write a script that I can setup in cron and copy/ftp files at a given time. I've tried the script 2 diffent ways. One way it didn't process either file if 2 or more files were created between the cron runs and the 2nd way (below) the ftp says there is already a file with that name and the process stops.&lt;BR /&gt;Here is what I am trying to run. &lt;BR /&gt;PATH=/sbin:/usr/sbin:/usr/bin:/opt/pgp-6.5.8;export PATH&lt;BR /&gt;WAND=/home/wand;export WAND&lt;BR /&gt;WANDSAVE=/home/wand/SAVE;export WANDSAVE&lt;BR /&gt;DATE=$(date '+%Y%m%d');export DATE&lt;BR /&gt;TIME=$(date '+%H%M%S');export TIME&lt;BR /&gt;echo $DATE&lt;BR /&gt;echo $TIME&lt;BR /&gt;export FTPSERVER=xxx.x.x.xxx&lt;BR /&gt;&lt;BR /&gt;cd $WAND&lt;BR /&gt;mv people_error_*.txt.pgp /tmp/&lt;BR /&gt;mv people_error_*.txt /tmp/&lt;BR /&gt;/usr/bin/cp -p testfile* $WANDSAVE/&lt;BR /&gt;&lt;BR /&gt;ls testfile* &amp;gt;/tmp/testfile.out&lt;BR /&gt;for file in '/tmp/testfile.out'&lt;BR /&gt;do&lt;BR /&gt;sleep 30&lt;BR /&gt;/usr/bin/mv $file people_error_"$DATE"_"$TIME".txt&lt;BR /&gt;&lt;BR /&gt;/opt/pgp-6.5.8/pgp -e people_error_*.txt PGP-Key&lt;BR /&gt;&lt;BR /&gt;/usr/bin/echo "`/usr/bin/date` Starting FTP process"&lt;BR /&gt;&lt;BR /&gt;/usr/bin/echo "user xxxxxxx xxxxxxxx\nbin\nput people_error_*.txt.pgp\nbye" &amp;gt;/&lt;BR /&gt;p/ftpin_error.tmp&lt;BR /&gt;/usr/bin/ftp -n -i $FTPSERVER &lt;BR /&gt;/usr/bin/echo "`/usr/bin/date` ending FTP process"&lt;BR /&gt;&lt;BR /&gt;rm /tmp/ftpin_error.tmp&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;Any help would be appreciated and points awarded.</description>
      <pubDate>Thu, 29 May 2008 14:17:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111279#M445995</guid>
      <dc:creator>George Doller</dc:creator>
      <dc:date>2008-05-29T14:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111280#M445996</link>
      <description>&lt;!--!*#--&gt;Just as a starting point, what did you think&lt;BR /&gt;that this was doing?:&lt;BR /&gt;&lt;BR /&gt;    for file in '/tmp/testfile.out'&lt;BR /&gt;    do&lt;BR /&gt;&lt;BR /&gt;It's not _reading_ "/tmp/testfile.out".&lt;BR /&gt;&lt;BR /&gt;td192&amp;gt; cat f1.sh&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;for file in '/tmp/testfile.out'; do&lt;BR /&gt;    echo $file&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;td192&amp;gt; ./f1.sh&lt;BR /&gt;/tmp/testfile.out&lt;BR /&gt;&lt;BR /&gt;It is possible to read names from a file, but&lt;BR /&gt;this is not one of the ways.&lt;BR /&gt;&lt;BR /&gt;For diagnostic/educational purposes, you may&lt;BR /&gt;find it helpful to run your script with "-v"&lt;BR /&gt;and/or "-x" options ("sh -x f1.sh").</description>
      <pubDate>Thu, 29 May 2008 14:44:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111280#M445996</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-05-29T14:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111281#M445997</link>
      <description>George,&lt;BR /&gt;&lt;BR /&gt;I think your 'for' loop needs an adjustment.  If you put an echo $file statement under your 'for/do' loop, you'll see that only /tmp/testfile.out gets returned and the loop exits.&lt;BR /&gt;&lt;BR /&gt;Try:&lt;BR /&gt;&lt;BR /&gt;for file in `cat /tmp/testfile.out`&lt;BR /&gt;do&lt;BR /&gt;&lt;SOMETHING&gt;&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Eric&lt;/SOMETHING&gt;</description>
      <pubDate>Thu, 29 May 2008 14:47:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111281#M445997</guid>
      <dc:creator>erics_1</dc:creator>
      <dc:date>2008-05-29T14:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111282#M445998</link>
      <description>You guys are correct, it's not putting out the files name as I expected. I tried adding the cat in front and I still only get /tmp/testfile.out. Not sure why....</description>
      <pubDate>Thu, 29 May 2008 15:16:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111282#M445998</guid>
      <dc:creator>George Doller</dc:creator>
      <dc:date>2008-05-29T15:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111283#M445999</link>
      <description>Hi George:&lt;BR /&gt;&lt;BR /&gt;If you want to read a file do something like this:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;while read LINE&lt;BR /&gt;do&lt;BR /&gt;    echo ${LINE}&lt;BR /&gt;done &amp;lt; /etc/hosts&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;...This can be ammended to read and split a line into its components.  For example, if you only want the first "word" (based on the current setting of 'IFS'):&lt;BR /&gt;&lt;BR /&gt;while read FIRST REST&lt;BR /&gt;do&lt;BR /&gt;    echo ${FIRST}&lt;BR /&gt;done &amp;lt; /etc/hosts&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;...or, change the 'IFS' (inter-field-seperator) to a colon:&lt;BR /&gt;&lt;BR /&gt;OLDIFS=${IFS}&lt;BR /&gt;IFS=":"&lt;BR /&gt;while read FIRST REST&lt;BR /&gt;do&lt;BR /&gt;    echo ${FIRST}&lt;BR /&gt;done &amp;lt; /etc/passwd&lt;BR /&gt;IFS=${OLDIFS}&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 29 May 2008 15:25:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111283#M445999</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-05-29T15:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111284#M446000</link>
      <description>The while read LINE worked well to get a listing of my file names but my next problem is how to rename each of them and ftp them individually. Any help would be great.</description>
      <pubDate>Thu, 29 May 2008 15:43:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111284#M446000</guid>
      <dc:creator>George Doller</dc:creator>
      <dc:date>2008-05-29T15:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111285#M446001</link>
      <description>&lt;!--!*#--&gt;Hi (again):&lt;BR /&gt;&lt;BR /&gt;To move a file:&lt;BR /&gt;&lt;BR /&gt;TIMESTAMP=$(date +%Y%m%d_%H%M%S)&lt;BR /&gt;while read FILE&lt;BR /&gt;do&lt;BR /&gt;    mv ${FILE} ${FILE).${TIMESTAMP}&lt;BR /&gt;done &amp;lt; inputlist &lt;BR /&gt;&lt;BR /&gt;...It is good technique to use the curly braces to surround your variables.  This avoids ambuguity.&lt;BR /&gt;&lt;BR /&gt;As for your FTP portion, you could reference your local and remote filenames as variables ( ${localfile} and ${remotefile} ).  Then, you can pass what you need.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 29 May 2008 15:54:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111285#M446001</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-05-29T15:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111286#M446002</link>
      <description>Your last reply was great, my only problem now is my users want the original files to be changed to people_error_{TIMESTAMP}.txt and since the 2 files are being processed together, I am only getting 1 renamed file. Is there a way to put a sleep in between the first mv and the 2nd mv? If not then I don't think what I am trying to do will work. since both output files will have the same name.</description>
      <pubDate>Thu, 29 May 2008 17:10:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111286#M446002</guid>
      <dc:creator>George Doller</dc:creator>
      <dc:date>2008-05-29T17:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111287#M446003</link>
      <description>Hi (again) George:&lt;BR /&gt;&lt;BR /&gt;One problem with the ${TIMESTAMP} variable I built for you is that it is static.&lt;BR /&gt;&lt;BR /&gt;You can do (better) with:&lt;BR /&gt;&lt;BR /&gt;# mv ${FILE} ${FILE}.$(date +%Y%m%d_%H%M%S)&lt;BR /&gt;&lt;BR /&gt;...as written.  This causes the evaulation "on-the-fly" and if a second passes between moves, the file's name reflects that.&lt;BR /&gt;&lt;BR /&gt;Of course, in a loop, you can also impose a wait with:&lt;BR /&gt;&lt;BR /&gt;# sleep 1&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 29 May 2008 17:36:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111287#M446003</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-05-29T17:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111288#M446004</link>
      <description>&amp;gt; I tried adding the cat in front and I still&lt;BR /&gt;&amp;gt; only get /tmp/testfile.out. Not sure&lt;BR /&gt;&amp;gt; why....&lt;BR /&gt;&lt;BR /&gt;Probably because you didn't do exactly what&lt;BR /&gt;was suggested, and there's a difference&lt;BR /&gt;between "'" and "`".&lt;BR /&gt;&lt;BR /&gt;td192&amp;gt; cat f3.dat&lt;BR /&gt;aaa&lt;BR /&gt;bbb&lt;BR /&gt;td192&amp;gt; cat f3.sh&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;for file in ` cat f3.dat `; do&lt;BR /&gt;    echo $file&lt;BR /&gt;done&lt;BR /&gt;td192&amp;gt; ./f3.sh&lt;BR /&gt;aaa&lt;BR /&gt;bbb&lt;BR /&gt;&lt;BR /&gt;As usual, a precise and accurate description&lt;BR /&gt;of what you did, and what happened when you&lt;BR /&gt;did it, might be helpful.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] my only problem now [...]&lt;BR /&gt;&lt;BR /&gt;Oh, I doubt that.</description>
      <pubDate>Thu, 29 May 2008 17:39:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111288#M446004</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-05-29T17:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111289#M446005</link>
      <description>I tried using the date on the file instead of TIMESTAMP but I guess because they are same files they are happening at the same time and the 2nd file is over writing the 1st one. Thay for the suggestion. Can you explain how I might be able to try the loop?</description>
      <pubDate>Thu, 29 May 2008 17:51:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111289#M446005</guid>
      <dc:creator>George Doller</dc:creator>
      <dc:date>2008-05-29T17:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111290#M446006</link>
      <description>&lt;!--!*#--&gt;Hi (again) George:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;while read FILE&lt;BR /&gt;do&lt;BR /&gt;    mv ${FILE} ${FILE}.$(date +%Y%m%d_%H%M%S)&lt;BR /&gt;    sleep 1&lt;BR /&gt;done &amp;lt; inputlist&lt;BR /&gt;&lt;BR /&gt;...will make sure that the timestamp extension is unique.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Thu, 29 May 2008 17:58:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111290#M446006</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-05-29T17:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111291#M446007</link>
      <description>With the Sleep I was able to get my script to do everything I needed.&lt;BR /&gt;thank you very much.</description>
      <pubDate>Thu, 29 May 2008 19:05:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111291#M446007</guid>
      <dc:creator>George Doller</dc:creator>
      <dc:date>2008-05-29T19:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111292#M446008</link>
      <description>&amp;gt;I tried adding the cat in front and I still only get /tmp/testfile.out. &lt;BR /&gt;&lt;BR /&gt;(You shouldn't be using cat, that's evil. :-)&lt;BR /&gt;&lt;BR /&gt;There are two basic ways to handle files with files.  Either use while, as JRF said:&lt;BR /&gt;while file; do&lt;BR /&gt;...&lt;BR /&gt;done &amp;lt; file&lt;BR /&gt;&lt;BR /&gt;Or if a "limited" number that will fit in a shell command line, you can use for (an improvement of Steven's case):&lt;BR /&gt;for file in $(&amp;lt; file); do&lt;BR /&gt;...&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;Note: No cats needed.&lt;BR /&gt;&lt;BR /&gt;As a coding style, unless your other shell scripts need these variables, you shouldn't export them:&lt;BR /&gt;DATE=$(date '+%Y%m%d');export DATE&lt;BR /&gt;TIME=$(date '+%H%M%S');export TIME&lt;BR /&gt;&lt;BR /&gt;And if you using a real shell, you can use the export command directly:&lt;BR /&gt;export FOO=bar</description>
      <pubDate>Fri, 30 May 2008 09:36:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111292#M446008</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-05-30T09:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111293#M446009</link>
      <description>&lt;!--!*#--&gt;Hi (again) George:&lt;BR /&gt;&lt;BR /&gt;As Dennis noted, 'cat's can be evil.&lt;BR /&gt;&lt;BR /&gt;Well-behaved (written) Unix filters will read files passed as commandline arguments, or take their input from STDIN as from a pipe's output.&lt;BR /&gt;&lt;BR /&gt;Thus, when someone writes (variously):&lt;BR /&gt;&lt;BR /&gt;# cat file | awk ...&lt;BR /&gt;# cat file | grep ...&lt;BR /&gt;&lt;BR /&gt;...they are creating a needless extra process and wasting I/O.  The 'cat' process reads a file and writes each line of output which is then *read* again by another process only to filter and *write* something.  Instead, one should write:&lt;BR /&gt;&lt;BR /&gt;# awk '{ ... }' file&lt;BR /&gt;# grep whatever file&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF... [ who happens to like cats (as animals) ]</description>
      <pubDate>Fri, 30 May 2008 10:56:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111293#M446009</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-05-30T10:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111294#M446010</link>
      <description>&amp;gt; [...] (an improvement of Steven's case) [...]&lt;BR /&gt;&lt;BR /&gt;Hey.  Don't blame me for that "cat".  I was&lt;BR /&gt;only offering an illustration of how the&lt;BR /&gt;previous suggestion actually _does_ work&lt;BR /&gt;(with the right punctuation).  As I said, "It&lt;BR /&gt;is possible to read names from a file, but&lt;BR /&gt;this is not one of the ways."  The one of&lt;BR /&gt;those ways which I'd prefer is a while-read&lt;BR /&gt;like that suggested by Mr. Ferguson, which&lt;BR /&gt;allows more flexible processing more easily.</description>
      <pubDate>Fri, 30 May 2008 12:03:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111294#M446010</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-05-30T12:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111295#M446011</link>
      <description>George,&lt;BR /&gt;&lt;BR /&gt;I like to use "set -x" at the begining of scripts and in functions while testing.  It helps to debug...  Just thought it might help.&lt;BR /&gt;&lt;BR /&gt;Tommy</description>
      <pubDate>Fri, 30 May 2008 14:29:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111295#M446011</guid>
      <dc:creator>trpjr1</dc:creator>
      <dc:date>2008-05-30T14:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help with a script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111296#M446012</link>
      <description>I was able to use the while command and with the sleep it solved all my needs. Thanks for all the quick responses.</description>
      <pubDate>Fri, 30 May 2008 14:34:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-a-script/m-p/5111296#M446012</guid>
      <dc:creator>George Doller</dc:creator>
      <dc:date>2008-05-30T14:34:35Z</dc:date>
    </item>
  </channel>
</rss>

