<?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: how to display or find only softlink in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728366#M100952</link>
    <description>excellent!!!&lt;BR /&gt;&lt;BR /&gt;that is exactly what I want!!!&lt;BR /&gt;&lt;BR /&gt;thank you soo much&lt;BR /&gt;&lt;BR /&gt;I assigned points to everyone..&lt;BR /&gt;&lt;BR /&gt;you guys are the bEST!!!</description>
    <pubDate>Thu, 09 Feb 2006 17:35:30 GMT</pubDate>
    <dc:creator>Gemini_2</dc:creator>
    <dc:date>2006-02-09T17:35:30Z</dc:date>
    <item>
      <title>how to display or find only softlink</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728359#M100945</link>
      <description>How do I list or find only softlinks in a directory?&lt;BR /&gt;&lt;BR /&gt;if I do "ls -l", it will find both :-(</description>
      <pubDate>Thu, 09 Feb 2006 15:28:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728359#M100945</guid>
      <dc:creator>Gemini_2</dc:creator>
      <dc:date>2006-02-09T15:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: how to display or find only softlink</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728360#M100946</link>
      <description>ls -l | grep "^l"</description>
      <pubDate>Thu, 09 Feb 2006 15:31:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728360#M100946</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2006-02-09T15:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to display or find only softlink</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728361#M100947</link>
      <description>You can use ls -l |grep ^l, and you can also use find ./* -prune -type l -ls</description>
      <pubDate>Thu, 09 Feb 2006 15:33:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728361#M100947</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-02-09T15:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to display or find only softlink</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728362#M100948</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can use find&lt;BR /&gt;&lt;BR /&gt;find . -type l &lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Thu, 09 Feb 2006 15:34:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728362#M100948</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2006-02-09T15:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to display or find only softlink</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728363#M100949</link>
      <description>find . -type l -exec ls -al {} \;</description>
      <pubDate>Thu, 09 Feb 2006 17:07:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728363#M100949</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2006-02-09T17:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to display or find only softlink</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728364#M100950</link>
      <description>thank you all. in my case, I had "-&amp;gt;"&lt;BR /&gt;so I had to use "\-&amp;gt;", that did the trick..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I wish there is a way to display the softlink differently &lt;BR /&gt;&lt;BR /&gt;like right now, it is&lt;BR /&gt;&lt;BR /&gt;softlink real-link&lt;BR /&gt;&lt;BR /&gt;so I have to reverse it to be&lt;BR /&gt;real-link softlink when I use "ln -s real-link softare" to recreate some of the softlinks...</description>
      <pubDate>Thu, 09 Feb 2006 17:15:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728364#M100950</guid>
      <dc:creator>Gemini_2</dc:creator>
      <dc:date>2006-02-09T17:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to display or find only softlink</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728365#M100951</link>
      <description>Hi Gemubu:&lt;BR /&gt;&lt;BR /&gt;Here's an eary way to output the linkage relationship in reverse notation:&lt;BR /&gt;&lt;BR /&gt;# find . -type l | xargs ls -l | awk '{print $NF,$(NF-2)}'&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 09 Feb 2006 17:31:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728365#M100951</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-02-09T17:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to display or find only softlink</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728366#M100952</link>
      <description>excellent!!!&lt;BR /&gt;&lt;BR /&gt;that is exactly what I want!!!&lt;BR /&gt;&lt;BR /&gt;thank you soo much&lt;BR /&gt;&lt;BR /&gt;I assigned points to everyone..&lt;BR /&gt;&lt;BR /&gt;you guys are the bEST!!!</description>
      <pubDate>Thu, 09 Feb 2006 17:35:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728366#M100952</guid>
      <dc:creator>Gemini_2</dc:creator>
      <dc:date>2006-02-09T17:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to display or find only softlink</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728367#M100953</link>
      <description>Hi (again) Gemini:&lt;BR /&gt;&lt;BR /&gt;Sorry for the typo spelling your name.&lt;BR /&gt;&lt;BR /&gt;If you prefer, add the 'ln -s' to your output, too:&lt;BR /&gt;&lt;BR /&gt;# find /var -type l | xargs ls -l | awk '{print "ln -s",$NF,$(NF-2)}'&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Feb 2006 17:39:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728367#M100953</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-02-09T17:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to display or find only softlink</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728368#M100954</link>
      <description>yes..yes..I see what you meant..&lt;BR /&gt;&lt;BR /&gt;too beautiful!!&lt;BR /&gt;&lt;BR /&gt;thanks again!!! million times!!!&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Feb 2006 17:44:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728368#M100954</guid>
      <dc:creator>Gemini_2</dc:creator>
      <dc:date>2006-02-09T17:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to display or find only softlink</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728369#M100955</link>
      <description>James R. Ferguson is nice solution,&lt;BR /&gt;I agree with him!&lt;BR /&gt;Just comment that "-type l" mean search all link file.&lt;BR /&gt;Enjoy with scripting&lt;BR /&gt;tienna</description>
      <pubDate>Thu, 09 Feb 2006 21:19:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-display-or-find-only-softlink/m-p/3728369#M100955</guid>
      <dc:creator>Nguyen Anh Tien</dc:creator>
      <dc:date>2006-02-09T21:19:03Z</dc:date>
    </item>
  </channel>
</rss>

