<?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: find syntax in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047930#M135873</link>
    <description>If you have nfs mounts, then some of the above suggestions will take a long time to scan all the remote file systems and may turn up results you don't want.&lt;BR /&gt;Likewise if you have CDs mounted, these will also be scanned.&lt;BR /&gt;&lt;BR /&gt;Run "mount -p" and if you see any with "nfs" in the 3rd col, these denote remote nfs mounts. You need to exclude then from your search, using:&lt;BR /&gt;&lt;BR /&gt;nice find / -fsonly vxfs -type l -exec ls -ld {} \;&lt;BR /&gt;&lt;BR /&gt;Note, the "vxfs" above matches what was returned in col 3 of the mount -p command. It could be (hopefully not) that you are running hfs, in which case use "hfs" instead of "vxfs".&lt;BR /&gt;See "man find" and look at the -fsonly switch.&lt;BR /&gt;&lt;BR /&gt;And I always prefix "find" with "nice", in order not to be too antisocial!&lt;BR /&gt;&lt;BR /&gt;-- Graham</description>
    <pubDate>Thu, 14 Aug 2003 07:04:46 GMT</pubDate>
    <dc:creator>Graham Cameron_1</dc:creator>
    <dc:date>2003-08-14T07:04:46Z</dc:date>
    <item>
      <title>find syntax</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047925#M135868</link>
      <description>Hello ,&lt;BR /&gt;&lt;BR /&gt;i want to find all the links in the system ,&lt;BR /&gt;what is the syntax ?&lt;BR /&gt;&lt;BR /&gt;Eran .</description>
      <pubDate>Wed, 13 Aug 2003 10:28:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047925#M135868</guid>
      <dc:creator>Chapaya</dc:creator>
      <dc:date>2003-08-13T10:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: find syntax</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047926#M135869</link>
      <description>find / -type l&lt;BR /&gt;&lt;BR /&gt;man find&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;JL</description>
      <pubDate>Wed, 13 Aug 2003 10:32:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047926#M135869</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2003-08-13T10:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: find syntax</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047927#M135870</link>
      <description>Hi Eran,&lt;BR /&gt;&lt;BR /&gt;# Find / -type l -exec ls -l {} \;&lt;BR /&gt;&lt;BR /&gt;Robert-jan.</description>
      <pubDate>Wed, 13 Aug 2003 10:34:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047927#M135870</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2003-08-13T10:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: find syntax</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047928#M135871</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you are trying to find all the symbolic links, use something like this:&lt;BR /&gt;&lt;BR /&gt;# find / -type l   &amp;lt;&amp;lt;&amp;lt; lowercase L&lt;BR /&gt;&lt;BR /&gt;Refer to the find(1) man page for more information.&lt;BR /&gt;&lt;BR /&gt;I don't think it will find hard links.  Are you also after hard links?&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Tim</description>
      <pubDate>Wed, 13 Aug 2003 10:35:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047928#M135871</guid>
      <dc:creator>Tim Adamson_1</dc:creator>
      <dc:date>2003-08-13T10:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: find syntax</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047929#M135872</link>
      <description>if you need more details, you can pipe into  xargs :&lt;BR /&gt;find / -type l | xargs -l20 ll&lt;BR /&gt;(less costly than the exec option)&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Wed, 13 Aug 2003 10:42:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047929#M135872</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2003-08-13T10:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: find syntax</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047930#M135873</link>
      <description>If you have nfs mounts, then some of the above suggestions will take a long time to scan all the remote file systems and may turn up results you don't want.&lt;BR /&gt;Likewise if you have CDs mounted, these will also be scanned.&lt;BR /&gt;&lt;BR /&gt;Run "mount -p" and if you see any with "nfs" in the 3rd col, these denote remote nfs mounts. You need to exclude then from your search, using:&lt;BR /&gt;&lt;BR /&gt;nice find / -fsonly vxfs -type l -exec ls -ld {} \;&lt;BR /&gt;&lt;BR /&gt;Note, the "vxfs" above matches what was returned in col 3 of the mount -p command. It could be (hopefully not) that you are running hfs, in which case use "hfs" instead of "vxfs".&lt;BR /&gt;See "man find" and look at the -fsonly switch.&lt;BR /&gt;&lt;BR /&gt;And I always prefix "find" with "nice", in order not to be too antisocial!&lt;BR /&gt;&lt;BR /&gt;-- Graham</description>
      <pubDate>Thu, 14 Aug 2003 07:04:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-syntax/m-p/3047930#M135873</guid>
      <dc:creator>Graham Cameron_1</dc:creator>
      <dc:date>2003-08-14T07:04:46Z</dc:date>
    </item>
  </channel>
</rss>

