标签: bash shell
在bash脚本中,我有两个命令行,其中第二个必须在第一个完成后启动(第二个命令需要一些文件将由第一个命令生成),我想在后台运行这两个命令。我该怎么办?
答案 0 :(得分:4)
(command1 ; command2) &
此处的相关文档:https://www.gnu.org/software/bash/manual/html_node/Command-Grouping.html