Timeline for How can I run multiple Bash scripts simultaneously in a terminal window?
Current License: CC BY-SA 4.0
3 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Apr 25, 2020 at 23:47 | vote | accept | Googlebot | ||
| Apr 24, 2020 at 5:58 | comment | added | David Z |
Actually I think parallel was built for exactly this use case. You say it's the same script you're running but with different parameters, right? That's what parallel does. The way you listed it here is fine, but you may also want to consider something like parallel -u ./script.sh ::: 1 2 #(and so forth). Also see the --line-buffer option.
|
|
| Apr 24, 2020 at 0:14 | history | answered | Googlebot | CC BY-SA 4.0 |