Skip to content

Instantly share code, notes, and snippets.

@AkdM
Last active September 18, 2018 08:45
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 AkdM/58df0c041bb71da22dd52f59a3b0dcc8 to your computer and use it in GitHub Desktop.
Save AkdM/58df0c041bb71da22dd52f59a3b0dcc8 to your computer and use it in GitHub Desktop.
ZSH launch speed command
# 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