让 bash 在启动后立即运行命令,然后停留在这个会话中?

发布于 2024-12-26 02:16:55 字数 377 浏览 0 评论 0原文

我需要在 bash 启动后立即运行该命令,然后留在会话中。 我期待类似的东西会起作用 bash && cd ~/Work,但是,显然,它会在初始会话中运行第二个命令,而不是我正在启动的命令。

我发现了这个 在新 shell 中运行 bash 命令,并在此命令执行后留在新 shell 线程中,但运行 bash --rcfile 对我不起作用,因为我仍然需要 rcfile待加载。

I need to run the command right after the bash starts and then stay in the session.
I was expecting something like that would work bash && cd ~/Work, but, apparentely, it would run the second command in the initial session, not the one I'm starting.

I've found this run bash command in new shell and stay in new shell after this command executes thread, but running bash --rcfile doesn't work for me, because I still need the rcfile to be loaded.

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

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

发布评论

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

评论(1

天涯沦落人 2025-01-02 02:16:55

您仍然可以使用 --rcfile,只需在命令列表中包含默认 rc 文件的来源即可:

bash --rcfile <(echo ". ~/.bashrc && cd ~/Work")

You can still use --rcfile, you just need to include the sourcing of the default rc file in your command list:

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