Someone wanted to use the old %0|%0 forkbomb a little more ... conservatively. I whipped this up:
-
@echo off
-
setlocal
-
set counter = 0
-
call :DOIT %0
-
goto :eof
-
-
:DOIT
-
set /a counter=%counter% + 1
-
if %counter% gtr 10 goto :EXIT
-
%1|%1
-
REM 1 ping = 1 second
-
ping -n 1 -w 1000 127.0.0.1 > nul
-
goto :eof
-
-
:EXIT
-
echo ran %counter% times. Exiting now.
-
endlocal
... I didn't actually run it myself, you understand. No guts, no glory system crash. But he says it 'spawned a whole lot of copies, which all self destructed'. It seems to me that since each new iteration spawns ten forks, each of which spawn 10 forks, each of which pawn ten forks ... that it would go on infinitely. But maybe, just maybe, they all share the same environment, and so ran into the same %counter% limit. I just ain't sure!