<?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: List files and see with more in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079330#M6814</link>
    <description>find / -name '*.h' | more redirects find command in more command, what you want to do is display the content, this can be done thru cat :&lt;BR /&gt;find / -name '*.h' | cat '*.h' | more&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;J</description>
    <pubDate>Fri, 26 Sep 2003 09:33:29 GMT</pubDate>
    <dc:creator>Jerome Henry</dc:creator>
    <dc:date>2003-09-26T09:33:29Z</dc:date>
    <item>
      <title>List files and see with more</title>
      <link>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079328#M6812</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;How can I list all files with extension .h and see the source code of each one ?&lt;BR /&gt;&lt;BR /&gt;Like this:&lt;BR /&gt;find / -name '*.h' | more ...&lt;BR /&gt;&lt;BR /&gt;I want to use more with the results of find.&lt;BR /&gt;&lt;BR /&gt;Any ideas ?&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Mauro</description>
      <pubDate>Fri, 26 Sep 2003 08:39:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079328#M6812</guid>
      <dc:creator>Mauro_8</dc:creator>
      <dc:date>2003-09-26T08:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: List files and see with more</title>
      <link>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079329#M6813</link>
      <description>you could do  find / -name "*.h" -exec more {} \;</description>
      <pubDate>Fri, 26 Sep 2003 08:57:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079329#M6813</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2003-09-26T08:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: List files and see with more</title>
      <link>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079330#M6814</link>
      <description>find / -name '*.h' | more redirects find command in more command, what you want to do is display the content, this can be done thru cat :&lt;BR /&gt;find / -name '*.h' | cat '*.h' | more&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;J</description>
      <pubDate>Fri, 26 Sep 2003 09:33:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079330#M6814</guid>
      <dc:creator>Jerome Henry</dc:creator>
      <dc:date>2003-09-26T09:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: List files and see with more</title>
      <link>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079331#M6815</link>
      <description>You can also use xargs like this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;find . -name \*.h |xargs more&lt;BR /&gt;&lt;BR /&gt;I like xargs because its shorter to write than -exec more {} ';'&lt;BR /&gt;&lt;BR /&gt;Dave</description>
      <pubDate>Fri, 26 Sep 2003 11:06:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079331#M6815</guid>
      <dc:creator>Dave Falloon</dc:creator>
      <dc:date>2003-09-26T11:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: List files and see with more</title>
      <link>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079332#M6816</link>
      <description>more `find / -name "*.h"`&lt;BR /&gt;&lt;BR /&gt;-b-</description>
      <pubDate>Fri, 26 Sep 2003 12:32:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079332#M6816</guid>
      <dc:creator>Balaji N</dc:creator>
      <dc:date>2003-09-26T12:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: List files and see with more</title>
      <link>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079333#M6817</link>
      <description>I know this is not exactly what you wanted ask for, but I find I use emacs more often the more&lt;BR /&gt;mainly because it come with colors on file extension it know about.&lt;BR /&gt;&lt;BR /&gt;also you can click and get a list of the buffer, and click to an other buffer&lt;BR /&gt;&lt;BR /&gt;so I find the following more usefull.&lt;BR /&gt;&lt;BR /&gt;find . -name \*.html | xargs emacs&lt;BR /&gt;&lt;BR /&gt;but it is realy a how do you like your tea question !&lt;BR /&gt;&lt;BR /&gt;enjoy&lt;BR /&gt;&lt;BR /&gt;J-P</description>
      <pubDate>Fri, 26 Sep 2003 15:42:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/list-files-and-see-with-more/m-p/3079333#M6817</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2003-09-26T15:42:31Z</dc:date>
    </item>
  </channel>
</rss>

