Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # Simulate slowed zsh session
  2. for i in `seq 50`; do source ~/.zshrc; echo "a"; done
  3. # use zsh to make it faster "child" zsh
  4. zsh
  5. # confirm fast
  6. source ~/.zshrc; # fast
  7. # revert back to "parent" zsh
  8. exit
  9. # confirm old slow session is still there
  10. source ~/.zshrc; # slow
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement