I want to write a shell script which can start two python scripts parallelly. Other commands in shell script will run after the two parallel python processes are done.
In conclusion, two key-points:
- run the two python processes parallelly;
- run other commands after the python processes are done.
How should I do that?