<?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: HPUX 11, how to find most recent created file in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026595#M762820</link>
    <description>Paul,&lt;BR /&gt;&lt;BR /&gt;This command will display the 10 largest files under /path which were modified less than 3 days ago:&lt;BR /&gt;&lt;BR /&gt;# find /path -type f -mtime -3 -exec ll \+ | sort -rn -k5 | head -n 10&lt;BR /&gt;&lt;BR /&gt;Feel free to experiment with different values until you get a useful result.  Note that UNIX has no notion of when a file was created.  It is possible to infer this from a file's mtime (last modified timestamp) provided that the file has not be modified since its creation.&lt;BR /&gt;&lt;BR /&gt;PCS&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 05 Feb 2007 07:42:19 GMT</pubDate>
    <dc:creator>spex</dc:creator>
    <dc:date>2007-02-05T07:42:19Z</dc:date>
    <item>
      <title>HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026588#M762813</link>
      <description>we are using a HPUX11 system and one of the disks is running out of space all the time, there is a mega structure on this and would take ages to find it, is there a UNIX Command to show on disk what the path and size of recently created files.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Paul</description>
      <pubDate>Mon, 05 Feb 2007 06:26:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026588#M762813</guid>
      <dc:creator>Paul Dutton</dc:creator>
      <dc:date>2007-02-05T06:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026589#M762814</link>
      <description>Hi Paul,&lt;BR /&gt;&lt;BR /&gt;maybe you can try this:&lt;BR /&gt;&lt;BR /&gt;touch &lt;MOUNT-POINT&gt;/newfile&lt;BR /&gt;find &lt;MOUNT-POINT&gt; -type f -newer &lt;MOUNT-POINT&gt;/newfile -exec  ls -l {} \;&lt;BR /&gt;&lt;BR /&gt;Hth&lt;BR /&gt;regards&lt;BR /&gt;pg&lt;/MOUNT-POINT&gt;&lt;/MOUNT-POINT&gt;&lt;/MOUNT-POINT&gt;</description>
      <pubDate>Mon, 05 Feb 2007 06:32:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026589#M762814</guid>
      <dc:creator>Piergiacomo Perini</dc:creator>
      <dc:date>2007-02-05T06:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026590#M762815</link>
      <description>See this mini howto for find command - &lt;A href="http://www.softpanorama.org/Tools/Find/find_mini_tutorial.shtml" target="_blank"&gt;http://www.softpanorama.org/Tools/Find/find_mini_tutorial.shtml&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;ivan</description>
      <pubDate>Mon, 05 Feb 2007 06:33:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026590#M762815</guid>
      <dc:creator>Ivan Krastev</dc:creator>
      <dc:date>2007-02-05T06:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026591#M762816</link>
      <description>Hi Paul,&lt;BR /&gt;and welcome to the forums !&lt;BR /&gt;&lt;BR /&gt;Please see this earlier thread:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1037903" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1037903&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;ls -lrt would list the files in a directory in reverse time order, but you are after a whole moiunt-pount, so the solution will have to include find.&lt;BR /&gt;&lt;BR /&gt;Please also read:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt; on how to reward any useful answers given to your questions.&lt;BR /&gt;</description>
      <pubDate>Mon, 05 Feb 2007 06:35:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026591#M762816</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2007-02-05T06:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026592#M762817</link>
      <description>Tried the touch mount point /new file&lt;BR /&gt;when i run find MP -type f -newer MP/newfile -exec ls -l{}\;&lt;BR /&gt;&lt;BR /&gt;I get error -exec not terminated with ";"&lt;BR /&gt;&lt;BR /&gt;Please advise&lt;BR /&gt;&lt;BR /&gt;Paul</description>
      <pubDate>Mon, 05 Feb 2007 07:01:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026592#M762817</guid>
      <dc:creator>Paul Dutton</dc:creator>
      <dc:date>2007-02-05T07:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026593#M762818</link>
      <description>Paul, &lt;BR /&gt;you need a space between -l and the brackets and a space between brackets and backslash.&lt;BR /&gt;&lt;BR /&gt;ls -l {} \;&lt;BR /&gt;     ^  ^  &lt;BR /&gt;</description>
      <pubDate>Mon, 05 Feb 2007 07:06:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026593#M762818</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2007-02-05T07:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026594#M762819</link>
      <description>Thanks this is a great help, can you advise me on how to pipe this to a file so i can view the output please&lt;BR /&gt;&lt;BR /&gt;Paul</description>
      <pubDate>Mon, 05 Feb 2007 07:38:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026594#M762819</guid>
      <dc:creator>Paul Dutton</dc:creator>
      <dc:date>2007-02-05T07:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026595#M762820</link>
      <description>Paul,&lt;BR /&gt;&lt;BR /&gt;This command will display the 10 largest files under /path which were modified less than 3 days ago:&lt;BR /&gt;&lt;BR /&gt;# find /path -type f -mtime -3 -exec ll \+ | sort -rn -k5 | head -n 10&lt;BR /&gt;&lt;BR /&gt;Feel free to experiment with different values until you get a useful result.  Note that UNIX has no notion of when a file was created.  It is possible to infer this from a file's mtime (last modified timestamp) provided that the file has not be modified since its creation.&lt;BR /&gt;&lt;BR /&gt;PCS&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 05 Feb 2007 07:42:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026595#M762820</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2007-02-05T07:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026596#M762821</link>
      <description>To pipe the find command I supplied in my last message to /tmp/find.out&lt;BR /&gt;# find /path -type f -mtime -3 -exec ll \+ | sort -rn -k5 | head -n 10 &amp;gt; /tmp/find.out&lt;BR /&gt;&lt;BR /&gt;Then to read it:&lt;BR /&gt;# more /tmp/find.out</description>
      <pubDate>Mon, 05 Feb 2007 07:44:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026596#M762821</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2007-02-05T07:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026597#M762822</link>
      <description>Thanks for your help&lt;BR /&gt;Paul</description>
      <pubDate>Mon, 05 Feb 2007 07:47:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026597#M762822</guid>
      <dc:creator>Paul Dutton</dc:creator>
      <dc:date>2007-02-05T07:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026598#M762823</link>
      <description>Paul,&lt;BR /&gt;before you close this thread, summarising the solution, could you please read:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#28" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#28&lt;/A&gt; onwards on how to reward any useful answers given to your questions.&lt;BR /&gt;</description>
      <pubDate>Mon, 05 Feb 2007 09:27:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026598#M762823</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2007-02-05T09:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11, how to find most recent created file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026599#M762824</link>
      <description>Thanks for all your help in this,&lt;BR /&gt;&lt;BR /&gt;Job Done&lt;BR /&gt;&lt;BR /&gt;Paul</description>
      <pubDate>Mon, 05 Feb 2007 09:31:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-how-to-find-most-recent-created-file/m-p/5026599#M762824</guid>
      <dc:creator>Paul Dutton</dc:creator>
      <dc:date>2007-02-05T09:31:05Z</dc:date>
    </item>
  </channel>
</rss>

