Finished Unix Programming Environment and realized that I didn't know the following sequence runs both programs in parallel:
$ cat me.txt & cat you.txt
To run them one after the other, the syntax is so:
$ cat me.txt; cat you.txt
permalink