Skip to content

Instantly share code, notes, and snippets.

@charlesreid1
Last active March 27, 2017 18:36
Show Gist options
  • Save charlesreid1/ffd3988aded737619d859298b15f0563 to your computer and use it in GitHub Desktop.
Save charlesreid1/ffd3988aded737619d859298b15f0563 to your computer and use it in GitHub Desktop.
echo "----------"
echo "running command 1..."
time for i in {0..1000}; do true; done
echo "----------"
echo "running command 2..."
time for i in {0..1000}; do echo "hello world" >> file; done
echo "----------"
echo "running command 3..."
time for i in {0..1000}; do touch file; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment