我有一个问题。我正在寻找很长时间的这个答案 – 我怎么能在新的bash shell中运行命令,并在此命令执行后保留在这个新shell。例如:
bash -c "export PS1='> ' && ls"
将使新的shell,导出PS1,列表目录和…将退出到我当前的shell。我想留在新的。
你可以通过滥用–rcfile选项来实现类似的东西:
bash --rcfile <(echo "export PS1='> ' && ls")
–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