tim (02/14/83)
If you have sequence of statements separated by semicolons running in the foreground, suspending and then resuming will lose all statements after the one currently running. E.g.: % lex lexan; cc lex.yy.c -ll; echo ^G ^Z Stopped % fg lex lexan % ls lexan lex.yy.c % Note that there is no a.out. Neither the cc nor the echo ran.