Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question
thanks...i'll check it – lakshmipathi Jul 26 '10 at 9:33

marked as duplicate by KennyTM, Kobi, 0xA3, Joachim Sauer, Donal Fellows Jul 26 '10 at 9:35

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.

1 Answer

up vote 7 down vote accepted

You define a function called :. Inside this function you call this function twice (:|:) and then you send that process to the background (&). Then you finally call it at the end.

Because of the recursive nature, you'll keep forking. Since there is no base case, the recursion will never end.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.