TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

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

13 pointsby benvanalmost 9 years ago

2 comments

brbsixalmost 9 years ago
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_malmost 9 years ago
This looks pretty useful.