<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Codes on The Bruised Edge</title><link>https://blog.kevinclarke.info/code/</link><description>Recent content in Codes on The Bruised Edge</description><generator>Hugo</generator><language>en</language><lastBuildDate>Sat, 25 Jul 2026 22:52:51 -0400</lastBuildDate><atom:link href="https://blog.kevinclarke.info/code/index.xml" rel="self" type="application/rss+xml"/><item><title>Copying Nested Files</title><link>https://blog.kevinclarke.info/code/copying-nested-files/</link><pubDate>Sat, 25 Jul 2026 22:52:51 -0400</pubDate><guid>https://blog.kevinclarke.info/code/copying-nested-files/</guid><description>&lt;p&gt;A one-liner for copying nested files with a specific extension to a new location:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;find /tmp/AudioBooks -type f -name &amp;#34;*.m4b&amp;#34; -exec cp {} ~/AudioBooks ;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The example will find all the .m4b files in &lt;code&gt;/tmp/AudioBooks&lt;/code&gt; and copy them into &lt;code&gt;~/AudioBooks&lt;/code&gt;. If there are subdirectories, the files within those will be copied, too.&lt;/p&gt;</description></item></channel></rss>