异步加载 bash_completion 脚本

发布于 2024-12-21 01:37:48 字数 140 浏览 1 评论 0原文

我的 .bash_profile 脚本中的 bash_completion 脚本运行缓慢,导致新终端启动速度非常慢。是否可以提供一个用于运行命令的 shell,然后在后台获取 bash_completion 脚本?

The bash_completion script in my .bash_profile script is running slowly, making new terminals very slow to start up. Is it possible to present a shell for running commands, and then source the bash_completion script in the background?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

み格子的夏天 2024-12-28 01:37:48

我不这么认为,bash_completion 取决于设置的一些变量,如果您尝试在后台加载它们(使用 &),它们将在子 shell 上创建,并且在你正在运行的外壳。

但是,您可以将它们从 .bashrc 移至 .bash_profile,然后注销,这样每个会话仅加载一次,但我不确定这是否有效,因为其中大多数是数组,而且据我所知,它们无法导出。

我想你也可以尝试某种“缓存”,虽然很丑陋,但可能会加速一点。

I don't think so, bash_completion depends on some variables being set and if you try to load them on the background (with &) they'll be created on a subshell and not be available on the shell you're runnning.

you can however move those from .bashrc to .bash_profile and then logout, that way they're loaded only once per session but I'm not sure if this would work either since most of those are arrays and afaik those can't be exported.

I suppose you could also try some kind of "caching" that will be ugly but may speed up a bit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文