Last active
March 27, 2017 18:36
-
-
Save charlesreid1/ffd3988aded737619d859298b15f0563 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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