python os模块进程函数系统进程举例总结
Table of Contents1. 系统进程2. 举例2.1. os.fork2.2. os.exec 和 os.system2.3. os.wait3. 总结系统进程今天在看《Beginning Linux Programming》中的进程相关部分,讲到Linux几个进程相关的系统函数: system, exec, fork, wait. Pyth...