Hi,
I'm a newbie when it comes to using UNIX, and I'm hoping someone here can help me out. I have a set of processes that I want to run sequentially:
process1.py
process2.py
process3.py
I want to know I can run these sequentially using their process IDs (PIDs). Ideally, I want to create an alias called "after" so that I can run the processes as follows:
>> process1.py &
>> jobs
[1] 9736 Running process1.py &
>> after 9736 process2.py &
Do you know if there's a command or alias I can use to do this?
Thanks in advance!
~a