Skip to content

Instantly share code, notes, and snippets.

@ess

ess/stress.sh Secret

Created July 26, 2019 22:04
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 ess/64c0294a03ef474f21bcb569119b316a to your computer and use it in GitHub Desktop.
Save ess/64c0294a03ef474f21bcb569119b316a to your computer and use it in GitHub Desktop.
#!/bin/bash
peg() {
while true
do
true
done
}
peg &
pegpid=$!
sleep 300
kill -9 $pegpid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment