Possible Duplicate:
The following bash command will spawn processes to kernel death. Can you explain the syntax?
:(){ :|:& };:
running this fork() unlimited .. Can one please explain this bash script ?
running this fork() unlimited .. Can one please explain this bash script ? |
|||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You define a function called Because of the recursive nature, you'll keep forking. Since there is no base case, the recursion will never end. |
|||
|
|