让 bash 在启动后立即运行命令,然后停留在这个会话中?
我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您仍然可以使用
--rcfile
,只需在命令列表中包含默认 rc 文件的来源即可:You can still use
--rcfile
, you just need to include the sourcing of the default rc file in your command list: