<?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: Rename All Files and Directory Names to Lowercase in Linux	</title>
	<atom:link href="https://www.tecmint.com/rename-all-files-and-directory-names-to-lowercase-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/rename-all-files-and-directory-names-to-lowercase-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Fri, 14 Jul 2023 07:20:40 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Benja		</title>
		<link>https://www.tecmint.com/rename-all-files-and-directory-names-to-lowercase-in-linux/comment-page-1/#comment-1827020</link>

		<dc:creator><![CDATA[Benja]]></dc:creator>
		<pubDate>Thu, 16 Jun 2022 11:16:31 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27155#comment-1827020</guid>

					<description><![CDATA[Hi, you can execute your first option with a single command: 

&lt;code&gt;find Files -depth -exec rename -v -f &#039;s/(.*)\/([^\/]*)/$1\/\L$2/&#039; {} \+&lt;/code&gt;
]]></description>
			<content:encoded><![CDATA[<p>Hi, you can execute your first option with a single command: </p>
<p><code>find Files -depth -exec rename -v -f 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \+</code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Justin		</title>
		<link>https://www.tecmint.com/rename-all-files-and-directory-names-to-lowercase-in-linux/comment-page-1/#comment-1210736</link>

		<dc:creator><![CDATA[Justin]]></dc:creator>
		<pubDate>Thu, 25 Jul 2019 18:19:33 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27155#comment-1210736</guid>

					<description><![CDATA[Might be easier in a for loop using &lt;strong&gt;var&lt;/strong&gt; substitution.
&lt;pre&gt;
$ for i in ./*; do echo $i ${i,,}; done
&lt;/pre&gt;
Replace &lt;strong&gt;&quot;echo&quot;&lt;/strong&gt; with &lt;strong&gt;&quot;mv&quot;&lt;/strong&gt;.]]></description>
			<content:encoded><![CDATA[<p>Might be easier in a for loop using <strong>var</strong> substitution.</p>
<pre>
$ for i in ./*; do echo $i ${i,,}; done
</pre>
<p>Replace <strong>&#8220;echo&#8221;</strong> with <strong>&#8220;mv&#8221;</strong>.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Stefan		</title>
		<link>https://www.tecmint.com/rename-all-files-and-directory-names-to-lowercase-in-linux/comment-page-1/#comment-1161031</link>

		<dc:creator><![CDATA[Stefan]]></dc:creator>
		<pubDate>Fri, 07 Jun 2019 10:08:11 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27155#comment-1161031</guid>

					<description><![CDATA[Does this command also work in CentOS 7?
&lt;pre&gt;
# find Files -depth &#124; xargs -n 1 rename -v &#039;s/(.*)\/([^\/]*)/$1\/\L$2/&#039; {} \;
&lt;/pre&gt;
I don&#039;t get an error but it doesn&#039;t seem to work.

Is it also possible to prepare this command so that spaces are replaced by a _ or -]]></description>
			<content:encoded><![CDATA[<p>Does this command also work in CentOS 7?</p>
<pre>
# find Files -depth | xargs -n 1 rename -v 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \;
</pre>
<p>I don&#8217;t get an error but it doesn&#8217;t seem to work.</p>
<p>Is it also possible to prepare this command so that spaces are replaced by a _ or &#8211;</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
