<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[#TIL you can create multiple folders under a directory with a single command.]]></title><description><![CDATA[<p><a href="https://mastodon.social/tags/TIL" rel="tag">#<span>TIL</span></a> you can create multiple folders under a directory with a single command.</p><p>`mkdir -p cool-fedi-project/{postgres-data,redis-data}`</p><p>Which creates cool-fedi-project and then both postgres-data and redis-data underneath!</p>]]></description><link>https://board.circlewithadot.net/topic/76c45e60-35d3-4e95-8ea1-d0b0ed770de4/til-you-can-create-multiple-folders-under-a-directory-with-a-single-command.</link><generator>RSS for Node</generator><lastBuildDate>Fri, 15 May 2026 00:33:27 GMT</lastBuildDate><atom:link href="https://board.circlewithadot.net/topic/76c45e60-35d3-4e95-8ea1-d0b0ed770de4.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 25 Apr 2026 14:38:38 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to #TIL you can create multiple folders under a directory with a single command. on Sat, 25 Apr 2026 22:11:49 GMT]]></title><description><![CDATA[<p dir="auto">That’s a standard shell feature. A more efficient way of writing same is</p>
<p dir="auto"><code>mkdir -p cool-fedi-project/{postgres,redis}-data</code></p>
<p dir="auto">or even</p>
<p dir="auto"><code>mkdir -p cool-fedi-project/{postgre,redi}s-data</code></p>
<p dir="auto">It also supports ranges, e.g.,</p>
<p dir="auto"><code>mkdir -p cool-fedi-project/data-{0..5}</code></p>
<p dir="auto">creates 6 folders. They can be combined</p>
<p dir="auto"><code>mkdir -p cool-fedi-project/{a..z}-data-{0..9}{0..9}</code></p>
<p dir="auto">creates 2600 folders (26 from letters, 100 2-digit numbers)</p>
<p dir="auto"><code>mkdir -p cool-fedi-project/{a..z}-data-{0..99}</code></p>
<p dir="auto">Also creates 2600 folders, but with a mix of single and double digit numbers.</p>
]]></description><link>https://board.circlewithadot.net/post/https://westergaard.social/objects/8e6462db-d7cb-4fe0-837b-3f5cc43f94af</link><guid isPermaLink="true">https://board.circlewithadot.net/post/https://westergaard.social/objects/8e6462db-d7cb-4fe0-837b-3f5cc43f94af</guid><dc:creator><![CDATA[michael@westergaard.social]]></dc:creator><pubDate>Sat, 25 Apr 2026 22:11:49 GMT</pubDate></item><item><title><![CDATA[Reply to #TIL you can create multiple folders under a directory with a single command. on Sat, 25 Apr 2026 20:11:28 GMT]]></title><description><![CDATA[<p><span><a href="/user/wtl%40mastodon.social">@<span>WTL</span></a></span></p><p><span><a href="/user/box464%40mastodon.social">@<span>box464</span></a></span> </p><p>Saving it to impress my next date</p>]]></description><link>https://board.circlewithadot.net/post/https://masto.bike/users/randomized/statuses/116467164027229444</link><guid isPermaLink="true">https://board.circlewithadot.net/post/https://masto.bike/users/randomized/statuses/116467164027229444</guid><dc:creator><![CDATA[randomized@masto.bike]]></dc:creator><pubDate>Sat, 25 Apr 2026 20:11:28 GMT</pubDate></item><item><title><![CDATA[Reply to #TIL you can create multiple folders under a directory with a single command. on Sat, 25 Apr 2026 16:18:47 GMT]]></title><description><![CDATA[<p><span><a href="/user/box464%40mastodon.social">@<span>box464</span></a></span> Okay, that is *neat* and very handy. &lt;bookmarks&gt;</p>]]></description><link>https://board.circlewithadot.net/post/https://mastodon.social/users/WTL/statuses/116466249042476246</link><guid isPermaLink="true">https://board.circlewithadot.net/post/https://mastodon.social/users/WTL/statuses/116466249042476246</guid><dc:creator><![CDATA[wtl@mastodon.social]]></dc:creator><pubDate>Sat, 25 Apr 2026 16:18:47 GMT</pubDate></item><item><title><![CDATA[Reply to #TIL you can create multiple folders under a directory with a single command. on Sat, 25 Apr 2026 15:07:14 GMT]]></title><description><![CDATA[<p><span><a href="/user/box464%40mastodon.social">@<span>box464</span></a></span><span> You can even have that in the middle of the path, so you could have written it as </span><code>mkdir -p cool-fedi-project/{postgres,redis}-data</code></p>]]></description><link>https://board.circlewithadot.net/post/https://peculiar.florist/notes/ali1euy7rydvi5ws</link><guid isPermaLink="true">https://board.circlewithadot.net/post/https://peculiar.florist/notes/ali1euy7rydvi5ws</guid><dc:creator><![CDATA[varpie@peculiar.florist]]></dc:creator><pubDate>Sat, 25 Apr 2026 15:07:14 GMT</pubDate></item></channel></rss>