On Nov 29, 2007 11:27 PM, Taskinoor Hasan <[EMAIL PROTECTED]> wrote:
> while(1) {
> fork();
> }
> with f. so it become
> f(){ f|f& };f
>
> this also works as fork bomb. so we r just calling a function that runs
> its
> copy in background, which further create more copy, which further ......
>Yep! Sorta So essentially we are defining a recursive function and then invoking it. With each invocation, a new shell gets created. -- Best, Z [Non-text portions of this message have been removed]
