<?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 strings multiple files in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532080#M221640</link>
    <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I would like to search for a string in multiple binary files, something simular to a search below in ascii files.&lt;BR /&gt;&lt;BR /&gt;# find /dir | xargs grep "string"&lt;BR /&gt;file:result&lt;BR /&gt;file:result&lt;BR /&gt;&lt;BR /&gt;is this possible with the strings command ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Robert-Jan</description>
    <pubDate>Tue, 26 Apr 2005 08:54:14 GMT</pubDate>
    <dc:creator>Robert-Jan Goossens</dc:creator>
    <dc:date>2005-04-26T08:54:14Z</dc:date>
    <item>
      <title>strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532080#M221640</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I would like to search for a string in multiple binary files, something simular to a search below in ascii files.&lt;BR /&gt;&lt;BR /&gt;# find /dir | xargs grep "string"&lt;BR /&gt;file:result&lt;BR /&gt;file:result&lt;BR /&gt;&lt;BR /&gt;is this possible with the strings command ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Tue, 26 Apr 2005 08:54:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532080#M221640</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-04-26T08:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532081#M221641</link>
      <description>With a loop&lt;BR /&gt;&lt;BR /&gt;results=/tmp/resultset.txt&lt;BR /&gt;while read -r fname&lt;BR /&gt;do&lt;BR /&gt;  strings $fname &amp;gt;&amp;gt; $results&lt;BR /&gt;done &amp;lt; filelist&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Apr 2005 08:59:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532081#M221641</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-04-26T08:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532082#M221642</link>
      <description>R-J,&lt;BR /&gt;&lt;BR /&gt;$ find /home |strings |grep rcp&lt;BR /&gt;/home/plr/rcpsysfiles&lt;BR /&gt;/home/plr/rcpsysfiles.bak&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;It works but doesn't give the result, just the file.  Is this what you're looking for?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Tue, 26 Apr 2005 08:59:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532082#M221642</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2005-04-26T08:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532083#M221643</link>
      <description>Robert-Jan,&lt;BR /&gt;Could Steves's idea be improved to ?:&lt;BR /&gt;&lt;BR /&gt;results=/tmp/resultset.txt&lt;BR /&gt;while read -r fname&lt;BR /&gt;do&lt;BR /&gt;# Show the filename&lt;BR /&gt;echo $fname &amp;gt;&amp;gt; $results&lt;BR /&gt;# Added the grep for the string looked for&lt;BR /&gt;strings $fname | grep "string" &amp;gt;&amp;gt; $results&lt;BR /&gt;done &amp;lt; filelist &lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Tue, 26 Apr 2005 09:07:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532083#M221643</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2005-04-26T09:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532084#M221644</link>
      <description>GNU grep&lt;BR /&gt;&lt;BR /&gt;# for i in `grep -l -a -r string /dir` ; do&lt;BR /&gt;# echo $i&lt;BR /&gt;# strings $i | grep string&lt;BR /&gt;# done&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Tue, 26 Apr 2005 09:20:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532084#M221644</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2005-04-26T09:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532085#M221645</link>
      <description>Hi Pete,&lt;BR /&gt;&lt;BR /&gt;# find . | strings | grep '@(#)CC'&lt;BR /&gt;is searching for filenames not inside the files.&lt;BR /&gt;&lt;BR /&gt;I need to find the files which have the line starting with the string "@(#)CC"&lt;BR /&gt;&lt;BR /&gt;Robert-Jan&lt;BR /&gt;&lt;BR /&gt;Steven + Peter puzzle not solved yet :-)&lt;BR /&gt;&lt;BR /&gt;Merijn, not possible to install gnu grep.</description>
      <pubDate>Tue, 26 Apr 2005 09:26:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532085#M221645</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-04-26T09:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532086#M221646</link>
      <description>Robert-Jan,&lt;BR /&gt;how about:&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;find /dir &amp;gt; /tmp/filelist&lt;BR /&gt;results=/tmp/resultset.txt&lt;BR /&gt;while read -r fname&lt;BR /&gt;do&lt;BR /&gt;# Show the filename&lt;BR /&gt;echo $fname &amp;gt;&amp;gt; $results&lt;BR /&gt;# Added the grep for the string looked for&lt;BR /&gt;strings $fname | grep "^"@(#)CC" &amp;gt;&amp;gt; $results&lt;BR /&gt;done &amp;lt; /tmp/filelist&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Tue, 26 Apr 2005 09:41:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532086#M221646</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2005-04-26T09:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532087#M221647</link>
      <description>&lt;A href="http://www.ust.hk/itsc/unix/sw/grep-2.4.2.html" target="_blank"&gt;http://www.ust.hk/itsc/unix/sw/grep-2.4.2.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Slowaris 9 and up seem to have ggrep by default. I cannot check&lt;BR /&gt;&lt;BR /&gt;Slow but it works:&lt;BR /&gt;&lt;BR /&gt;# find /dir -type f -exec strings {} \; | grep '^@(#)CC'&lt;BR /&gt;&lt;BR /&gt;BUT! that pattern is a 'what' ident. Do you have 'what' program?&lt;BR /&gt;&lt;BR /&gt;If you don't here's a version in perl:&lt;BR /&gt;&lt;BR /&gt;--8&amp;lt;--- pwhat&lt;BR /&gt;#!/pro/bin/perl -w&lt;BR /&gt;&lt;BR /&gt;$/ = "@(#)";&lt;BR /&gt;&lt;BR /&gt;$pat = -f $ARGV[-1] ? "^" : pop @ARGV;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;&amp;gt;;&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;    my $i = index ($_, "\0");&lt;BR /&gt;    $i == -1 and next;&lt;BR /&gt;    my $w = substr $_, 0, $i;&lt;BR /&gt;    $w =~ m/---/ or $w =~ m/$pat/ or next;&lt;BR /&gt;    print "\t$w\n";&lt;BR /&gt;    }&lt;BR /&gt;--&amp;gt;8---&lt;BR /&gt;&lt;BR /&gt;Easy to extend with File::Find to search recursive&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Apr 2005 09:42:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532087#M221647</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2005-04-26T09:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532088#M221648</link>
      <description>Create a short script (say fred.sh)&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;&lt;BR /&gt;CT=`strings "$1" | grep "^$2" | wc -l`&lt;BR /&gt;if [ "$CT" -ne 0 ]&lt;BR /&gt;then&lt;BR /&gt;echo $1&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;Then run find command&lt;BR /&gt;&lt;BR /&gt;find /dir -type f -exec ./fred.sh {} "string" \;&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Apr 2005 09:47:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532088#M221648</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-04-26T09:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532089#M221649</link>
      <description>R-J,&lt;BR /&gt;&lt;BR /&gt;Sorry about the first attempt.  This appears to work, but can be extremely slow unless you severely limit its' scope:&lt;BR /&gt;&lt;BR /&gt;find /home/plr/tmp -exec strings {} \; |grep pckey&lt;BR /&gt;rcp /root/pckey $1:/tmp/pckey&lt;BR /&gt;echo " copying /tmp/pckey "&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Apr 2005 09:50:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532089#M221649</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2005-04-26T09:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532090#M221650</link>
      <description>Hi,&lt;BR /&gt;a bit primitive, but may be better than nothing.&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;previous=""&lt;BR /&gt;find "$1" -type f -print| while read line&lt;BR /&gt;do&lt;BR /&gt;        if [ "$line" != "$previous" ]&lt;BR /&gt;        then&lt;BR /&gt;                strings "$line" | grep -q "$2" 2&amp;gt;/dev/null&lt;BR /&gt;                if [ "$?" = "0" ]&lt;BR /&gt;                then&lt;BR /&gt;                        echo "$line:"&lt;BR /&gt;                        strings "$line"| grep "$2" 2&amp;gt;/dev/null&lt;BR /&gt;                        previous="$line"&lt;BR /&gt;                fi&lt;BR /&gt;        fi&lt;BR /&gt;done&lt;BR /&gt;~&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;Try running it with "$1" as your starting directory for the search and "$2" as the string to search for.&lt;BR /&gt; &lt;BR /&gt;regards,&lt;BR /&gt;John K.</description>
      <pubDate>Tue, 26 Apr 2005 09:54:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532090#M221650</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2005-04-26T09:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532091#M221651</link>
      <description>Stephen,&lt;BR /&gt;&lt;BR /&gt;Tried it,&lt;BR /&gt;&lt;BR /&gt;it came back with all the filenames&lt;BR /&gt;./HKPBB102&lt;BR /&gt;./HKPBB104&lt;BR /&gt;./DBSBB102&lt;BR /&gt;./DBSBB104&lt;BR /&gt;./DBSBB105&lt;BR /&gt;./DBSBB106&lt;BR /&gt;./ITBBB001&lt;BR /&gt;&lt;BR /&gt;ls | while read LINE&lt;BR /&gt;do&lt;BR /&gt;strings $LINE | grep '^@(#)CC'&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;comes back with all the strings&lt;BR /&gt;&lt;BR /&gt;@(#)CC AAPVG248 01-10-2001 BAPE SFR4467 &lt;BR /&gt;@(#)CC AAPVG290 15-06-2001 WH &lt;BR /&gt;@(#)CC AAPVG290 26-06-2001 WH Technical Review Changes&lt;BR /&gt;@(#)CC AAPVG290 28-06-2001 SFR4082 WH &lt;BR /&gt;@(#)CC AAPVG290 30-07-2001 SFR4232 BAPE&lt;BR /&gt;@(#)CC AAPVG290 30-07-2001 SFR4234 BAPE&lt;BR /&gt;@(#)CC AAPVG290 31-07-2001  VTW1118&lt;BR /&gt;&lt;BR /&gt;RJ</description>
      <pubDate>Tue, 26 Apr 2005 10:01:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532091#M221651</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-04-26T10:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532092#M221652</link>
      <description>'I need to find the files which have the line starting with the string "@(#)CC"'&lt;BR /&gt;&lt;BR /&gt;It's rather difficult to mix the concept of "line" with "binary". Which is it? It really can't be both. You have to understand how the strings command works. It scans through data until it detects a certain number of consectutive printable ASCII characters. That "certain number" varies with the implementation but it's generally 3 or more. When that condition is met, the consectutive printable characters are output.&lt;BR /&gt;When  you see the output of strings broken into lines, it is really nothing of the sort.&lt;BR /&gt;&lt;BR /&gt;You probably need to change your request to something like "\n@(#)CC" or "\r@(#)CC" or "\f@(#)CC" or "@(#)CC" iff it occurs at the beginning of the file. Note that these sequences (though with low probability) occur in purely binary data so that accidental "hits" are possible.&lt;BR /&gt;&lt;BR /&gt;This is really a job for Perl because it is one of the few scripting languages that can handle text or binary data well.&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Apr 2005 10:03:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532092#M221652</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-04-26T10:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532093#M221653</link>
      <description>OK, this one should work better:&lt;BR /&gt;&lt;BR /&gt;--8&amp;lt;---&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;&lt;BR /&gt;use File::Find;&lt;BR /&gt;&lt;BR /&gt;$/ = "@(#)";&lt;BR /&gt;&lt;BR /&gt;my $dir = @ARGV &amp;amp;&amp;amp; -d $ARGV[0] ? shift (@ARGV) : ".";&lt;BR /&gt;&lt;BR /&gt;find (sub {&lt;BR /&gt;    -f or return;&lt;BR /&gt;    open my $f, "&amp;lt;$_";&lt;BR /&gt;    &amp;lt;$f&amp;gt;;&lt;BR /&gt;    while (&amp;lt;$f&amp;gt;) {&lt;BR /&gt;        my $i = index ($_, "\0");&lt;BR /&gt;        $i == -1 and next;&lt;BR /&gt;        my $w = substr $_, 0, $i;&lt;BR /&gt;        print "\t$w\n";&lt;BR /&gt;        }&lt;BR /&gt;    }, $dir);&lt;BR /&gt;--&amp;gt;8---&lt;BR /&gt;&lt;BR /&gt;You can change the path to be&lt;BR /&gt;&lt;BR /&gt;$/ = "@(#)CC";&lt;BR /&gt;&lt;BR /&gt;And get that included int the output lines as&lt;BR /&gt;&lt;BR /&gt;        print "\t$/$w\n";&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn [ who actually tested this chunk of code this time ]</description>
      <pubDate>Tue, 26 Apr 2005 10:34:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532093#M221653</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2005-04-26T10:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532094#M221654</link>
      <description>It will list the filenames that contain the string. What is it you are trying to do exactly?</description>
      <pubDate>Tue, 26 Apr 2005 10:44:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532094#M221654</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-04-26T10:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532095#M221655</link>
      <description>Stephen,&lt;BR /&gt;&lt;BR /&gt;I'm having a chat with the developer, you could be completly right. ( do I need both strings and filename ? )&lt;BR /&gt;&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Tue, 26 Apr 2005 11:03:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532095#M221655</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-04-26T11:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532096#M221656</link>
      <description>If I understand the question correctly, this should&lt;BR /&gt;do:&lt;BR /&gt;&lt;BR /&gt;--------&lt;BR /&gt;for f in $(find /dir)&lt;BR /&gt;do&lt;BR /&gt;for line in $(strings $f)&lt;BR /&gt;do&lt;BR /&gt;echo $line | grep -q "string"&lt;BR /&gt;if [ $? -eq 0 ]&lt;BR /&gt;then&lt;BR /&gt;echo $f:$line&lt;BR /&gt;fi&lt;BR /&gt;done&lt;BR /&gt;done&lt;BR /&gt;---------&lt;BR /&gt;&lt;BR /&gt;- Biswajit&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Apr 2005 13:05:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532096#M221656</guid>
      <dc:creator>Biswajit Tripathy</dc:creator>
      <dc:date>2005-04-26T13:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: strings multiple files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532097#M221657</link>
      <description>Not ideal but workable.&lt;BR /&gt;&lt;BR /&gt;create a small script search.sh&lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;&lt;BR /&gt;CT=`strings "$1" | grep "^$2" | grep -v "|  " | wc -l`&lt;BR /&gt;if [ "$CT" -ne 0 ]&lt;BR /&gt;then&lt;BR /&gt;echo $1&lt;BR /&gt;strings "$1" | grep "^$2" | grep -v "|  "&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;# find /directory -type f -exec ./search.sh {} "@(#)CC" \;&lt;BR /&gt;&lt;BR /&gt;Thanks all for your input.&lt;BR /&gt;&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Wed, 27 Apr 2005 04:00:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-multiple-files/m-p/3532097#M221657</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-04-27T04:00:13Z</dc:date>
    </item>
  </channel>
</rss>

