如果我使用导出变量方法,下一个 bash shell 可以忽略 eof(按 ^D 不会退出)。但是,我希望孩子 bash 可以通过按 ^D 退出。bash 是否有任何命令行选项可以完成这项工作?
export ignoreeof=1
exec bash # assume this bash's pid = 1234
bash$ ^D
bash$ Use "exit" to leave the shell.
bash$ bash # assume this bash's pid = 2234
bash$ ^D <-- I wish this could exit bash(pid=2234)