fork and exec in bash
How do I implement fork and exec in bash?
Let us suppose script as
echo "Script starts"
function_to_fork(){
sleep 5
echo "Hello"
}
echo "Script ends"
Basically I want that function to be called as new process like in C we use fork and exec calls..
From the script it is expected that the parent script will end and then after 5 seconds, "Hello" is printed.
Solution 1:
Use the ampersand just like you would from the shell.
#!/usr/bin/bash
function_to_fork() {
...
}
function_to_fork &
# ... execution continues in parent process ...
Solution 2:
How about:
(sleep 5; echo "Hello World") &