在新shell中运行bash命令,并在此命令执行后保留在新shell中

前端之家收集整理的这篇文章主要介绍了在新shell中运行bash命令,并在此命令执行后保留在新shell中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个问题。我正在寻找很长时间的这个答案 – 我怎么能在新的bash shell中运行命令,并在此命令执行后保留在这个新shell。例如:
bash -c "export PS1='> ' && ls"

将使新的shell,导出PS1,列表目录和…将退出到我当前的shell。我想留在新的。

你可以通过滥用–rcfile选项来实现类似的东西:
bash --rcfile <(echo "export PS1='> ' && ls")

bash manpage

–rcfile file

Execute commands from file instead of the system wide initialization file /etc/bash.bashrc and the standard personal initialization file ~/.bashrc if the shell is interactive

猜你在找的Bash相关文章