I looked at this page and can’t understand how this works.
This command ‘exponentially spawns subprocesses until your box locks up’.
But why? What I understand less are the colons.
user@host$ :(){ :|:& };:
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That defines a function called
:which calls itself twice (Code:: | :). It does that in the background (&). After the;the function definition is done and the function:gets started.So every instance of : starts two new : and so on… Like a binary tree of processes…
Written in plain C that is: