I have two scripts, they are both multiprocessing utilized scripts.
build.py reads from a db and spits out a text file. Parallel jobs are launched to do this.
push.py inserts/updates this text file to a persistent DB. Again, this is multiprocessing too.
Currently I have two separate crontab commands to do this. I want build.py to launch push.py then terminate itself, how can I do this?