Skip to content

Instantly share code, notes, and snippets.

@KSXGitHub
Created February 10, 2022 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KSXGitHub/7c95adc20bf5cf0a06ea09e7958ff107 to your computer and use it in GitHub Desktop.
Save KSXGitHub/7c95adc20bf5cf0a06ea09e7958ff107 to your computer and use it in GitHub Desktop.
Consume 2GiB of RAM
#!/bin/bash
set -o errexit -o pipefail -o nounset
echo 'Consuming RAM. Press Ctrl-C to stop.' >&2
while true; do
echo {0..8388608} >/dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment