我有一个作为 bash 脚本执行的简单文本文件 (command_script.txt)。
command_script.txt 的内容是这样的:
#!/bin/bash
some_command -flags input1 output1
some_command -flags input2 output2
some_command -flags input3 output3
...
some_command -flags input1000 output1000
我在命令行 (./command_script.txt) 上执行它,它一次运行一行。有没有一种简单的方法可以一次并行运行 20 行?
谢谢!