0

How do I invoke Zsh interactively while asking it to not process .zshrc?

Amelio Vazquez-Reina
  • 40,169
  • 77
  • 197
  • 294
  • 2
    Possible duplicate of [Start zsh with a custom zshrc](https://unix.stackexchange.com/questions/131716/start-zsh-with-a-custom-zshrc) – jesse_b Oct 19 '19 at 20:55

1 Answers1

2

Try using:

zsh --no-rcs

The --no-rcs option disables the RCS shell option in zsh. This prevents the shell from reading any other startup file than /etc/zshenv (this file can not be ignored).

Kusalananda
  • 320,670
  • 36
  • 633
  • 936
Ole Tange
  • 33,591
  • 31
  • 102
  • 198