<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to capture C and CPP files in  the linux operating system?</title>
	<atom:link href="http://www.linux-box.org/linux/how-to-capture-c-and-cpp-files-in-the-linux-operating-system/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linux-box.org/linux/how-to-capture-c-and-cpp-files-in-the-linux-operating-system</link>
	<description>Linux Box</description>
	<lastBuildDate>Wed, 18 Jan 2012 12:01:59 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Udi K</title>
		<link>http://www.linux-box.org/linux/how-to-capture-c-and-cpp-files-in-the-linux-operating-system/comment-page-1#comment-230</link>
		<dc:creator>Udi K</dc:creator>
		<pubDate>Thu, 25 Feb 2010 13:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-box.org/linux/how-to-capture-c-and-cpp-files-in-the-linux-operating-system#comment-230</guid>
		<description>What does it mean to capture a file??

If you mean to find the files and list the results, use the &#039;find&#039; command to search for *.c and *.cpp files in the whole system. You will get the result on the screen, and you can redirect the output to a file.

To find *.c files:
find / -name *.c

To find *.cpp files:
find / -name *.cpp

Explanation: the &quot;/&quot; means to start the search at the top of the file system, meaning that the search will include all the system. The &quot;-name&quot; means to search by name, and &quot;*.c&quot; is the file pattern you want to find.

To redirect the output, use &quot;&gt; output_file&quot; for example:
find / -name *.cpp &gt; output_file

Hope it helps. See the manual page &#039;man find&#039; to learn more.&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>What does it mean to capture a file??</p>
<p>If you mean to find the files and list the results, use the &#8216;find&#8217; command to search for *.c and *.cpp files in the whole system. You will get the result on the screen, and you can redirect the output to a file.</p>
<p>To find *.c files:<br />
find / -name *.c</p>
<p>To find *.cpp files:<br />
find / -name *.cpp</p>
<p>Explanation: the &quot;/&quot; means to start the search at the top of the file system, meaning that the search will include all the system. The &quot;-name&quot; means to search by name, and &quot;*.c&quot; is the file pattern you want to find.</p>
<p>To redirect the output, use &quot;&gt; output_file&quot; for example:<br />
find / -name *.cpp &gt; output_file</p>
<p>Hope it helps. See the manual page &#8216;man find&#8217; to learn more.<br /><b>References : </b></p>
]]></content:encoded>
	</item>
</channel>
</rss>

