<?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 Find Files by Extension in Linux	</title>
	<atom:link href="https://www.ubuntumint.com/find-files-by-extension-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.ubuntumint.com/find-files-by-extension-linux/</link>
	<description>UbuntuMint - Everything About Ubuntu Linux</description>
	<lastBuildDate>Mon, 04 Dec 2023 10:21:21 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.ubuntumint.com/find-files-by-extension-linux/#comment-27730</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 31 Jul 2023 07:50:05 +0000</pubDate>
		<guid isPermaLink="false">https://www.ubuntumint.com/?p=8803#comment-27730</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.ubuntumint.com/find-files-by-extension-linux/#comment-27666&quot;&gt;Flaviano Matos&lt;/a&gt;.

@Flaviano,

I&#039;m glad you found the information helpful! Files without extensions, also known as &quot;extensionless files,&quot; can indeed be a unique approach, but the operating system might not recognize the file type automatically based on the file name.

Therefore, you need to manually set each file type with the appropriate program or use the following script that will add the extension &lt;code&gt;&quot;.txt&quot;&lt;/code&gt; to several files that don&#039;t have an extension in a directory.
&lt;pre&gt;
for file in /path/to/directory/*; do
    mv &quot;$file&quot; &quot;$file.txt&quot;
done
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.ubuntumint.com/find-files-by-extension-linux/#comment-27666">Flaviano Matos</a>.</p>
<p>@Flaviano,</p>
<p>I&#8217;m glad you found the information helpful! Files without extensions, also known as &#8220;extensionless files,&#8221; can indeed be a unique approach, but the operating system might not recognize the file type automatically based on the file name.</p>
<p>Therefore, you need to manually set each file type with the appropriate program or use the following script that will add the extension <code>".txt"</code> to several files that don&#8217;t have an extension in a directory.</p>
<pre>
for file in /path/to/directory/*; do
    mv "$file" "$file.txt"
done
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Flaviano Matos		</title>
		<link>https://www.ubuntumint.com/find-files-by-extension-linux/#comment-27666</link>

		<dc:creator><![CDATA[Flaviano Matos]]></dc:creator>
		<pubDate>Fri, 28 Jul 2023 20:32:13 +0000</pubDate>
		<guid isPermaLink="false">https://www.ubuntumint.com/?p=8803#comment-27666</guid>

					<description><![CDATA[Good article!

Very useful!

However, I would like a different approach. What about files that don&#039;t have an extension? I have a lot of them because I think that file extensions are ugly.]]></description>
			<content:encoded><![CDATA[<p>Good article!</p>
<p>Very useful!</p>
<p>However, I would like a different approach. What about files that don&#8217;t have an extension? I have a lot of them because I think that file extensions are ugly.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
