<?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: Inquiry on File in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981274#M95755</link>
    <description>Hi Dennis:&lt;BR /&gt;&lt;BR /&gt;Thank you for the lengthy clarification.  I really appreciate it.&lt;BR /&gt;&lt;BR /&gt;I was perplexed and lulled into believing the manpages since they were consistent for three 11i versions and in fact get better (in my opinion) with each successive release.&lt;BR /&gt;&lt;BR /&gt;Sandman is very rigorous in his solutions and I should have tested his code to see that it was indeed sound.  Ironically, I wasn't aware that the curly braces before the plus character are optional (UNIX 2003 aside as you to mentioned) _until_ I consulted the manpages for that, so I learned a bit from Sandman's post from that perspective too.&lt;BR /&gt;&lt;BR /&gt;Reviewing the shell manpages again leaves one wondering about the admonishment in the 'find' documentation.&lt;BR /&gt;&lt;BR /&gt;Thank you very much for filing a fix.&lt;BR /&gt;&lt;BR /&gt;There are no hard feeling on my part nor I hope on anyone else's.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Wed, 18 Apr 2007 08:30:21 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2007-04-18T08:30:21Z</dc:date>
    <item>
      <title>Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981251#M95732</link>
      <description>Dear Gurus,&lt;BR /&gt;&lt;BR /&gt;I would like to ask what does the letter "T" stands for in the file permission attribute? Below is the example:&lt;BR /&gt;-r-------T   1 daemon     daemon         300 Apr 14 04:56 C0d569c2360.reply&lt;BR /&gt;&lt;BR /&gt;Also, i would like to ask, how would i search files in a year basis say for example, i want to search for files for the year 2004?&lt;BR /&gt;&lt;BR /&gt;Max points for all correct answers! Thanks!</description>
      <pubDate>Sat, 14 Apr 2007 03:16:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981251#M95732</guid>
      <dc:creator>Pando</dc:creator>
      <dc:date>2007-04-14T03:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981252#M95733</link>
      <description>From ls(1):&lt;BR /&gt;T No execute/search by others; set sticky bit on execution&lt;BR /&gt;&lt;BR /&gt;For 2004, you can just grep for 2004:&lt;BR /&gt;$ ll  ... | grep -w 2004&lt;BR /&gt;&lt;BR /&gt;You can add -R for recursive.&lt;BR /&gt;&lt;BR /&gt;If you want to use find(1), you would have to set up two reference files, one on Dec 31, 2003 and one on Dec 31, 2004 and then:&lt;BR /&gt;$ touch 1231235903 jan-file&lt;BR /&gt;$ touch 1231235904 dec-file&lt;BR /&gt;$ find paths -newer jan-file ! -newer dec-file ! -name dec-file</description>
      <pubDate>Sat, 14 Apr 2007 04:28:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981252#M95733</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-04-14T04:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981253#M95734</link>
      <description>Hi Pando,&lt;BR /&gt;&lt;BR /&gt;Have a look at this thread about the meaning of "sticky bit"&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=103855" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=103855&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;# cd /tmp&lt;BR /&gt;# touch -mt 0401010000 ref1&lt;BR /&gt;# touch -mt 0412312359 ref2&lt;BR /&gt;# find /filesystem \( -type f -a -newer /tmp/ref1 -a ! -newer /tmp/ref2 \)|xargs -n 100 ls -l {}&lt;BR /&gt;&lt;BR /&gt;0412312359 ( 04 year, 12 mounth, 31 day, 23 hour, 59 minutes)&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Sat, 14 Apr 2007 04:41:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981253#M95734</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2007-04-14T04:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981254#M95735</link>
      <description>I'm accustomed to dealing with /BEFORE and&lt;BR /&gt;/SINCE, where this problem doesn't arise, so&lt;BR /&gt;I see "find -newer" as badly designed, but&lt;BR /&gt;why would anyone want to leave a one-minute&lt;BR /&gt;hole in the year by specifyng "1231235904" or&lt;BR /&gt;"0412312359"?  (And even adding ".59" to get&lt;BR /&gt;seconds seems like a bad idea to me.)&lt;BR /&gt;&lt;BR /&gt;Assuming that "man find" is accurate (so that&lt;BR /&gt;"newer" really means "newer"), and that the&lt;BR /&gt;file system keeps date-time to better than&lt;BR /&gt;one-second precision, then it would appear&lt;BR /&gt;that "find" needs either "-newas" or "-older"&lt;BR /&gt;to do this job properly.  But, in any case,&lt;BR /&gt;I'd specify midnight-to-midnight and not&lt;BR /&gt;midnight-to-almost_midnight (or&lt;BR /&gt;almost_midnight-to-almost_midnight) and take&lt;BR /&gt;my chances with a potential one-instant error&lt;BR /&gt;rather than with a one-minute (or one-second)&lt;BR /&gt;error.  If the time resolution of the file&lt;BR /&gt;system is no better than one second, then&lt;BR /&gt;"-newer" with yyyy-12-31 23:59:59 should be&lt;BR /&gt;good enough, but using plain 23:59 seems like&lt;BR /&gt;asking for trouble.&lt;BR /&gt;&lt;BR /&gt;Or am I missing something obvious (again)?</description>
      <pubDate>Sat, 14 Apr 2007 05:30:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981254#M95735</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2007-04-14T05:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981255#M95736</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;....and a diplomatic compromise for finding the files whose last change of content was registered in 2004:&lt;BR /&gt;&lt;BR /&gt;$ find . -type f -exec ls -l {} \;| awk '$8~/2004/{print $9}'&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.</description>
      <pubDate>Sat, 14 Apr 2007 06:32:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981255#M95736</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2007-04-14T06:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981256#M95737</link>
      <description>&lt;P&gt;&amp;gt;Steven: And even adding ".59" to get seconds seems like a bad idea to me.)&lt;BR /&gt;&lt;BR /&gt;Ah, right.&amp;nbsp; "touch -t" is needed, see JRF's post below.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Assuming that "man find" is accurate (so that "newer" really means "newer"),&lt;BR /&gt;&lt;BR /&gt;Yes, I found my dec file but not jan.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;that the file system keeps date-time to better than one-second precision&lt;BR /&gt;&lt;BR /&gt;No, only seconds.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2011 23:11:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981256#M95737</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2011-10-06T23:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981257#M95738</link>
      <description>Steven &amp;gt;&amp;gt; Or am I missing something obvious (again)?&lt;BR /&gt;&lt;BR /&gt;Yes, your are obviously missing VMS with where (most) utilities use a common set of file selection funtions (such as the / BEFORE and /SINCE mentioned). Where files have creation dates, and where date&amp;amp;time stamps are recorded in sub-second precision and where the system and thus dates are designed to last well beyond 2038.&lt;BR /&gt;&lt;BR /&gt;Now if  VMS could only do a FORK properly...&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 14 Apr 2007 08:15:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981257#M95738</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-04-14T08:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981258#M95739</link>
      <description>Hi Pando:&lt;BR /&gt;&lt;BR /&gt;In keeping with the philosophy that there's always more than one way to do something, here's a Perl solution to find (recursively) all files in a directory whose last modification year matches your specification:&lt;BR /&gt;&lt;BR /&gt;# perl -MFile::Find -le 'find(sub{print $File::Find::name if -f &amp;amp;&amp;amp; ((localtime((stat)[9]))[5])==$ARGV[0]-1900},".")' 2004&lt;BR /&gt;&lt;BR /&gt;In general, 'cd' to the diretory of interest and pass the year for which you want to find files.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Sat, 14 Apr 2007 10:34:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981258#M95739</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-04-14T10:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981259#M95740</link>
      <description>&amp;gt; No, only seconds.&lt;BR /&gt;&lt;BR /&gt;Ok, fine.  I suppose that a limitation like&lt;BR /&gt;that makes the "find" feature shortage more&lt;BR /&gt;tolerable.  (I hear that it's also possible&lt;BR /&gt;to lean one drunk up against another drunk,&lt;BR /&gt;and get a configuration more stable than&lt;BR /&gt;either drunk trying to stand by himself.)&lt;BR /&gt;&lt;BR /&gt;But 23:59 is still lame.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Yes, your are obviously missing VMS [...]&lt;BR /&gt;&lt;BR /&gt;It shows, doesn't it.</description>
      <pubDate>Sat, 14 Apr 2007 12:27:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981259#M95740</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2007-04-14T12:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981260#M95741</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;Steven &amp;gt; But 23:59 is still lame&lt;BR /&gt;&lt;BR /&gt;OK, I'll agree with that part, but the precision can easily be expanded to one-second resolution.  As noted, the smallest granular resolution that stat() offers is in epoch seconds.  The use of two reference times with 'find' can accommodate this (see the manpages for 'touch(1)').&lt;BR /&gt;&lt;BR /&gt;# touch -mt 200312312359.59 /tmp/ref1&lt;BR /&gt;# touch -mt 200501010000.00 /tmp/ref2&lt;BR /&gt;# find . -type f -newer /tmp/ref1 -a ! -newer /tmp/ref2&lt;BR /&gt;&lt;BR /&gt;...offers Pando the ability to find any file modified in the year 2004.&lt;BR /&gt;&lt;BR /&gt;The Perl solution I suggested also adapts the maxiumum one-second resolution.  Take your choice.  Both are limited to the underlying granularity of the 'stat' structure (see the manpages for stat(5)).&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Sat, 14 Apr 2007 13:25:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981260#M95741</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-04-14T13:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981261#M95742</link>
      <description>See ls(1) and chmod(2) for the sticky bit and try the awk to find all 2004 files:&lt;BR /&gt;&lt;BR /&gt;# find / -type f -exec ll + | awk '$8=2004'&lt;BR /&gt;&lt;BR /&gt;~hope it helps</description>
      <pubDate>Sat, 14 Apr 2007 15:16:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981261#M95742</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2007-04-14T15:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981262#M95743</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;Sandman's solution needs to escape the "+" character since it is special to the shell.   Otherwise, the 'find' is correct as written.  Thus:&lt;BR /&gt;&lt;BR /&gt;# find / -type f -exec ll \+ | awk '$8=2004'&lt;BR /&gt;&lt;BR /&gt;For the specific question asked, this works well.  Using this technique for finding files in year N-1 where the current year is N will not always yield accurate results.  For instance, in April 2007, when the time of last modification is less than six months ago as are October, November and December 2006, using 2006 as the 'awk' argument will *miss* file last modified in those months.  This, of course, is the standard way 'ls' reports timestamps.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Sat, 14 Apr 2007 20:41:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981262#M95743</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-04-14T20:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981263#M95744</link>
      <description>Dear Gurus,&lt;BR /&gt;&lt;BR /&gt;Thanks for that wonderful insight! I am just curious, are the file with sticky bit safe to remove? :-(&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Sun, 15 Apr 2007 19:44:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981263#M95744</guid>
      <dc:creator>Pando</dc:creator>
      <dc:date>2007-04-15T19:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981264#M95745</link>
      <description>The sticky bit is meaningful only for executable files. No harm removing them as long you have valid backups in case the users suddenly find their apps no longer working.</description>
      <pubDate>Sun, 15 Apr 2007 21:01:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981264#M95745</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2007-04-15T21:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981265#M95746</link>
      <description>&amp;gt;JRF: Sandman's solution needs to escape the "+" character since it is special to the shell.&lt;BR /&gt;&lt;BR /&gt;Which shell treats "+" special??</description>
      <pubDate>Mon, 16 Apr 2007 02:15:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981265#M95746</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-04-16T02:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981266#M95747</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;Dennis &amp;gt; JRF: Sandman's solution needs to escape the "+" character since it is special to the shell. Which shell treats "+" special??&lt;BR /&gt;&lt;BR /&gt;OK, this is interesting.  If you examine the 'find(1)' manpages (either for 11.11, 11.23 or 11.31) they note under the discussion of '-exec cmd':&lt;BR /&gt;&lt;BR /&gt;/* begin quote */&lt;BR /&gt;&lt;BR /&gt;The end of cmd must be punctuated by a semicolon (;) or a plus sign (+) (semicolon and plus are special to the shell and must be escaped). &lt;BR /&gt;&lt;BR /&gt;/* end quote */&lt;BR /&gt;&lt;BR /&gt;I will agree, however, that the absence of the escape character doesn't seem to matter.  Perhaps I tend to be very sensitive to regular expresssion quantifiers ;-)&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 16 Apr 2007 07:15:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981266#M95747</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-04-16T07:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981267#M95748</link>
      <description>&amp;gt;JRF: I will agree, however, that the absence of the escape character doesn't seem to matter.&lt;BR /&gt;&lt;BR /&gt;The last time I asked this question, I postulated it could be due to context dependent files, which were removed with diskless workstations.  But the main thing is that you don't know more about this than I do.  ;-)</description>
      <pubDate>Mon, 16 Apr 2007 20:54:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981267#M95748</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-04-16T20:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981268#M95749</link>
      <description>HI:&lt;BR /&gt;&lt;BR /&gt;Dennis: But the main thing is that you don't know more about this than I do. ;-)&lt;BR /&gt;&lt;BR /&gt;Excuse me, I'm missing something.  Please enlighten me as to how I should interpret that.  Given that you work for HP and have access to internals that the rest of us folks don't, I would assume that is a given.  Perhaps you would clarify your remark.&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 17 Apr 2007 06:00:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981268#M95749</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-04-17T06:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981269#M95750</link>
      <description>&amp;gt;JRF: Please enlighten me as to how I should interpret that.&lt;BR /&gt;&lt;BR /&gt;The fact you don't have an existence proof other than the man page.  An existence proof trumps hand waving and lack of an example. ;-)&lt;BR /&gt;I'm assuming there might be a reason for that man page entry, perhaps a different shell.  Other than they just copied the ";" case.</description>
      <pubDate>Tue, 17 Apr 2007 07:22:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981269#M95750</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-04-17T07:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: Inquiry on File</title>
      <link>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981270#M95751</link>
      <description>Dennis,  &lt;BR /&gt;&lt;BR /&gt;I think you need to take a few chill pills!&lt;BR /&gt;&lt;BR /&gt;You said: "The fact you don't have an existence proof other than the man page. An existence proof trumps hand waving and lack of an example. ;-)"&lt;BR /&gt;&lt;BR /&gt;OK, so WHAT "existence proof" do you have?  Perhaps you would be so kind as to share?  &lt;BR /&gt;&lt;BR /&gt;I would ask what we are supposed to go by other than man pages and documentation?  That is all us non-HP types have access to.  If the man pages are incorrect perhaps you should do something about it other than berating a Forums member that is quite knowledgeable and rather well respected.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Apr 2007 08:16:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/inquiry-on-file/m-p/3981270#M95751</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2007-04-17T08:16:02Z</dc:date>
    </item>
  </channel>
</rss>

