如何在 shell 脚本文件中执行新的 bash 命令?

How to execute new bash command inside shell script file?

如何让下面的脚本正常工作?

1  #/bin/bash
2
3  # some commands
4
5  bash
6  # a lot of commands
7  # ...
8  exit
9  
10 bash
11 # A lot of other commands
12 # ...
13 exit
14 
15 exit 0

问题是当执行 shell 中的脚本时,输入了一个新的交互式 bash shell 并且执行停止在那里等待标准输入。由于子环境在实践中可能不是 BASH,第 4 行和第 9 行中的 bash 命令只是示例,这就是为什么我需要一个新的解决方案,而不是将这些命令放入单独的文件中并调用。感谢您的帮助。

这是记录在案的行为。如果你只执行一个 bash,你会得到一个交互式的 shell。如果你想在子进程中 运行 几个 bash 命令——这可能就是你想要的,因为你标记了你的问题 subshell,你写

bash FILENAME

其中 FILENAME 是包含命令的文件的名称。如果你想在当前进程中 运行 几个 bash 命令,你写一个

source FILENAME
. FILENAME

source. 之间的区别很小,您可以在 bash man 页面中找到它们。

如果您想 运行 在一个子进程中执行多个命令,而不将它们放入单独的文件中,您可以使用

(
   some command
   some other command
)