<?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 command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638282#M42932</link>
    <description>Thanks everyone, I've given you all points and my problem is now solved.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Christian</description>
    <pubDate>Thu, 03 Jan 2002 15:53:53 GMT</pubDate>
    <dc:creator>Christian Briddon</dc:creator>
    <dc:date>2002-01-03T15:53:53Z</dc:date>
    <item>
      <title>Find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638273#M42923</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I know this probably sounds like a stupid question but it's been driving me mad all afternoon.&lt;BR /&gt;How can I run a find in HPUX11 that searches for just link files, but also shows where they point to. I can find the files OK but I just want to print out where they go.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;&lt;BR /&gt;Christian Briddon</description>
      <pubDate>Thu, 03 Jan 2002 15:33:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638273#M42923</guid>
      <dc:creator>Christian Briddon</dc:creator>
      <dc:date>2002-01-03T15:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: Find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638274#M42924</link>
      <description>Hi Christian,&lt;BR /&gt;&lt;BR /&gt;How about:&lt;BR /&gt;&lt;BR /&gt;find dir -type l | xargs ll&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Jan 2002 15:36:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638274#M42924</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2002-01-03T15:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: Find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638275#M42925</link>
      <description>try this&lt;BR /&gt;&lt;BR /&gt;find / -type l | xargs ls -l</description>
      <pubDate>Thu, 03 Jan 2002 15:37:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638275#M42925</guid>
      <dc:creator>Jeff Machols</dc:creator>
      <dc:date>2002-01-03T15:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: Find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638276#M42926</link>
      <description>Hi Christian,&lt;BR /&gt;&lt;BR /&gt;find . -type l | xargs ls -l&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Thu, 03 Jan 2002 15:38:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638276#M42926</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-01-03T15:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: Find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638277#M42927</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;for i in `ls -R | awk '{ print $1}'&lt;BR /&gt;do&lt;BR /&gt;grep -q l $i&lt;BR /&gt;if [ "$?" -eq 0 ]&lt;BR /&gt;then&lt;BR /&gt;find / -name $i -print&lt;BR /&gt;fi&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;Gideon&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Jan 2002 15:38:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638277#M42927</guid>
      <dc:creator>G. Vrijhoeven</dc:creator>
      <dc:date>2002-01-03T15:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: Find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638278#M42928</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Here your command :&lt;BR /&gt;# find / -type l ?? more&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;# find / -type l ?? tee searchFiles.log&lt;BR /&gt;&lt;BR /&gt;Magdi</description>
      <pubDate>Thu, 03 Jan 2002 15:39:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638278#M42928</guid>
      <dc:creator>Magdi KAMAL</dc:creator>
      <dc:date>2002-01-03T15:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638279#M42929</link>
      <description>Hi Christian:&lt;BR /&gt;&lt;BR /&gt;How about something like:&lt;BR /&gt;&lt;BR /&gt;# find /etc -type l -exec ls -als {} \;|more&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 03 Jan 2002 15:40:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638279#M42929</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-01-03T15:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: Find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638280#M42930</link>
      <description>Hey,&lt;BR /&gt;&lt;BR /&gt;what abt this:&lt;BR /&gt;&lt;BR /&gt;# find dir_path -type l -exec ls -al {} \; &lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju</description>
      <pubDate>Thu, 03 Jan 2002 15:44:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638280#M42930</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-01-03T15:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638281#M42931</link>
      <description>find / -type l | while read line&lt;BR /&gt;do&lt;BR /&gt;ll $line&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;...jcd...&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Jan 2002 15:48:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638281#M42931</guid>
      <dc:creator>Joseph C. Denman</dc:creator>
      <dc:date>2002-01-03T15:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: Find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638282#M42932</link>
      <description>Thanks everyone, I've given you all points and my problem is now solved.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Christian</description>
      <pubDate>Thu, 03 Jan 2002 15:53:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2638282#M42932</guid>
      <dc:creator>Christian Briddon</dc:creator>
      <dc:date>2002-01-03T15:53:53Z</dc:date>
    </item>
  </channel>
</rss>

