Answer
In UNIX and LINUX, the command to create new processes is fork() and then exec().
Work Step by Step
Calling the fork() command creates a copy of your current process. This creates a child process and the original process is called the parent process. The child process can then call the exec() command to replace itself with the code of a different program.