TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Quickly create a nested folder structure via Terminal

3 点作者 kroger大约 5 年前

1 comment

kroger大约 5 年前
I didn&#x27;t know about:<p><pre><code> {A..C}{0..3} </code></pre> &quot;This sequence creates every combination of A to C and 0 to 3—i.e. A0, A1, A2, A3, B0, B1, etc.&quot;<p>And:<p><pre><code> echo {a..z..2} a c e g i k m o q s u w y </code></pre> &quot;The ..2 bit tells the expansion to only output every second letter.&quot;