ZSH launch speed command
This file contains 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
# One line: | |
TIMEFMT=$'real %E\tuser %U\tsys %S' && repeat 10 {time zsh -i -c exit} | |
# Two lines: | |
TIMEFMT=$'real %E\tuser %U\tsys %S' | |
repeat 10 {time zsh -i -c exit} # or only this line if you don't mind the formatting |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment