以下面的shell脚本为例:
#!/bin/bash python do_this_first.py python do_this_second.py python do_this_last.py
当我运行上面的时候,3个python脚本会并行运行吗?因为我希望 'do_this_second' 只在 'do_this_first' 完成后运行。
linux bash
bash ×1
linux ×1