Penguin

Differences between version 3 and previous revision of ForkBomb.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 3 Last edited on Thursday, May 24, 2007 12:28:11 pm by BenStaz Revert
Older page: version 2 Last edited on Thursday, May 24, 2007 12:27:48 pm by BenStaz Revert
@@ -3,7 +3,7 @@
 * :(){ :|:& };: 
  
 !What it does 
  
-Inside the recursive function (named : You could call it whatever you want, but i think : looks more mysterious!), a pipeline is created which forks two more instances of the function (each of which will be a whole process). The & symbol will cause the command to be executed in the background, and the shell will not wait for the command to finish. Then the function exits. However, for every instance of the function which exits in this manner, two more have already been created. The result is a vast number of processes, extremely quickly and will quickly consume a lot of resources! 
+Inside the recursive function (named : , you could call it whatever you want, but i think : looks more mysterious!), a pipeline is created which forks two more instances of the function (each of which will be a whole process). The & symbol will cause the command to be executed in the background, and the shell will not wait for the command to finish. Then the function exits. However, for every instance of the function which exits in this manner, two more have already been created. The result is a vast number of processes, extremely quickly and will quickly consume a lot of resources! 
  
 Note : Think of the last : as the igniter to the fork bomb!