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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Show HN: Sandboxd – speed up your bash/zshrc by lazy-loading the slow bits

13 点作者 benvan将近 9 年前

2 条评论

brbsix将近 9 年前
Bash v2.04+ does something similar, in that it lazy-loads completions. As soon as you type `git ` &lt;kbd&gt;Tab&lt;&#x2F;kbd&gt;, it runs `_completion_loader git`, which determines what file to source, in this case `&#x2F;usr&#x2F;share&#x2F;bash-completion&#x2F;completions&#x2F;git`.<p>I&#x27;ve been on the lookout for something like this. I just clocked in all my Bash startup files at 4858 lines, so I sure could use it.
评论 #11894573 未加载
bite_my_shiny_m将近 9 年前
This looks pretty useful.