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 脚本来暂停在主机上运行的一些虚拟机。但是,如果我按顺序编写脚本,VM 将一次挂起一个。暂停 VM 需要一些时间来保存状态。如何让我的脚本同时挂起虚拟机。换句话说,如何在 bash 脚本中同时运行命令,而不是按顺序运行?
您可以将任务置于后台。
some bash command with options and stuff then with a &
添加 & 会将命令发送到后台并开始下一个。
&在挂起 VM 的命令之后放置一个。
&
例如,如果
cmd_to_suspend_vm
是您运行的命令。你会跑
cmd_to_suspend_vm &