Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编写一个 bash 脚本,但我需要其中的多个选项卡或终端。是否可以在 bash 脚本中使用它。我需要它,因为我使用了一些需要继续运行的命令。
谢谢大家,对不起我的英语!
要在后台运行进程,请&在末尾添加。例如,它ls在后台运行并用于tail监视正在前台写入的文件。
&
ls
tail
ls -lR / > /tmp/ls.out & tail -f /tmp/ls.out
如果在任何时候您想等到后台进程完成后再继续 - 也许在脚本结束之前退出之前 - 使用裸wait命令:
wait