Clone
Clone is a command – line utility used in Linux to create a new process.The purpose of the clone command is to create a new thread which is similar to the old one. It is actually a library function layered on top of the underlying clone() system call, hereinafter referred to as sys_clone. The clone command lets the child process to share parts of its execution such as memory space, the table of file descriptors, and the table of signal handlers.