<?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 How to do an ls and show the path in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188734#M323403</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I would like to list all the directories and files of one dir.&lt;BR /&gt;Is there any instruccion to make it?&lt;BR /&gt;&lt;BR /&gt;For exemple:&lt;BR /&gt;&lt;BR /&gt;/tmp&lt;BR /&gt;/tmp/dir1&lt;BR /&gt;/tmp/dir1/file1&lt;BR /&gt;/tmp/dir2&lt;BR /&gt;/tmp/dir2/file1&lt;BR /&gt;/tmp/dir3&lt;BR /&gt;/tmp/file1&lt;BR /&gt;/tmp/file4&lt;BR /&gt;&lt;BR /&gt;Thanks a lot of,&lt;BR /&gt;Carmen.&lt;BR /&gt;</description>
    <pubDate>Tue, 29 Apr 2008 13:25:47 GMT</pubDate>
    <dc:creator>Carme Torca</dc:creator>
    <dc:date>2008-04-29T13:25:47Z</dc:date>
    <item>
      <title>How to do an ls and show the path</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188734#M323403</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I would like to list all the directories and files of one dir.&lt;BR /&gt;Is there any instruccion to make it?&lt;BR /&gt;&lt;BR /&gt;For exemple:&lt;BR /&gt;&lt;BR /&gt;/tmp&lt;BR /&gt;/tmp/dir1&lt;BR /&gt;/tmp/dir1/file1&lt;BR /&gt;/tmp/dir2&lt;BR /&gt;/tmp/dir2/file1&lt;BR /&gt;/tmp/dir3&lt;BR /&gt;/tmp/file1&lt;BR /&gt;/tmp/file4&lt;BR /&gt;&lt;BR /&gt;Thanks a lot of,&lt;BR /&gt;Carmen.&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Apr 2008 13:25:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188734#M323403</guid>
      <dc:creator>Carme Torca</dc:creator>
      <dc:date>2008-04-29T13:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to do an ls and show the path</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188735#M323404</link>
      <description>Hi Carmen:&lt;BR /&gt;&lt;BR /&gt;One way:&lt;BR /&gt;&lt;BR /&gt;# find /tmp&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 29 Apr 2008 13:29:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188735#M323404</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-04-29T13:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to do an ls and show the path</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188736#M323405</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;Of course, if you want to include more of the attributes, do:&lt;BR /&gt;&lt;BR /&gt;# find /tmp -exec ls -ld {} \+&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Apr 2008 13:30:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188736#M323405</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-04-29T13:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to do an ls and show the path</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188737#M323406</link>
      <description>Carme,&lt;BR /&gt; You can break it down even more say by size with:&lt;BR /&gt;find /opt -mount -mtime -1 -type f -ls -ld| awk '{ print $7 " " $11 }' | sort -n |      tail -20&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Many variables to manage and change though dependant on what you need.</description>
      <pubDate>Tue, 29 Apr 2008 16:57:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188737#M323406</guid>
      <dc:creator>Adam Winebaugh</dc:creator>
      <dc:date>2008-04-29T16:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to do an ls and show the path</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188738#M323407</link>
      <description>My apologies I wrote the wrong command down. Here is what I meant! Sorry about that&lt;BR /&gt;&lt;BR /&gt;find  /tmp -type f -size +1000000c -exec ls -ld {} \; | sort -rn | more&lt;BR /&gt;&lt;BR /&gt;Or you can switch sizes or names or whatever you want basically.</description>
      <pubDate>Tue, 29 Apr 2008 17:05:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188738#M323407</guid>
      <dc:creator>Adam Winebaugh</dc:creator>
      <dc:date>2008-04-29T17:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to do an ls and show the path</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188739#M323408</link>
      <description>OR sorry to keep posting here, this is another way:&lt;BR /&gt;&lt;BR /&gt;find /tmp -type f â  xdev -size +1000000c -exec ls -ld {} \; | sort -rn | more&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Ok I will leave you all alone now. Good Luck.</description>
      <pubDate>Tue, 29 Apr 2008 17:10:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188739#M323408</guid>
      <dc:creator>Adam Winebaugh</dc:creator>
      <dc:date>2008-04-29T17:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to do an ls and show the path</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188740#M323409</link>
      <description>&lt;BR /&gt;dear carme&lt;BR /&gt;&lt;BR /&gt;see find command&lt;BR /&gt;&lt;BR /&gt;man find &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;thanks and regards&lt;BR /&gt;&lt;BR /&gt;sajjad</description>
      <pubDate>Tue, 29 Apr 2008 17:10:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188740#M323409</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2008-04-29T17:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to do an ls and show the path</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188741#M323410</link>
      <description>The simplest way is:&lt;BR /&gt; &lt;BR /&gt;ls -R -1 /tmp&lt;BR /&gt; &lt;BR /&gt;The ls man page is quite large with all the extra options.</description>
      <pubDate>Tue, 29 Apr 2008 18:23:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188741#M323410</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2008-04-29T18:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to do an ls and show the path</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188742#M323411</link>
      <description>ls -R *[1-4]*</description>
      <pubDate>Tue, 29 Apr 2008 18:40:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188742#M323411</guid>
      <dc:creator>john D_3</dc:creator>
      <dc:date>2008-04-29T18:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to do an ls and show the path</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188743#M323412</link>
      <description>ls -R /tmp/*[1-4]*</description>
      <pubDate>Tue, 29 Apr 2008 18:40:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188743#M323412</guid>
      <dc:creator>john D_3</dc:creator>
      <dc:date>2008-04-29T18:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to do an ls and show the path</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188744#M323413</link>
      <description>I think "ls *" should do the trick already.</description>
      <pubDate>Wed, 30 Apr 2008 00:28:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-do-an-ls-and-show-the-path/m-p/4188744#M323413</guid>
      <dc:creator>CharlesC</dc:creator>
      <dc:date>2008-04-30T00:28:56Z</dc:date>
    </item>
  </channel>
</rss>

