Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • So I can't just use parallel and let it handle the assignment to the different cores? Commented Dec 1, 2016 at 9:50
  • i am not aware with parallel tool but the way that i mentioned will do the job but we will need to write small script to make this process auto Commented Dec 1, 2016 at 9:53
  • It sounds like I have to manually assign the different jobs to different cores. And what happens if I assign multiple jobs to the same core? Will it run them one after another or will run it concurrently by switching between the threads (I don't want that)? Commented Dec 1, 2016 at 10:14
  • don't run two scripts in one core at the same time wait until it finish then start the other one, take a look into this it may help you with ordering unix.stackexchange.com/questions/242087/… Commented Dec 1, 2016 at 10:28