Forrest logo
back to the zsh tool

zsh:tldr:a2710

zsh: Start an interactive shell session in verbose mode, printing each command before executing it.
$ zsh --verbose
try on your machine

The "zsh --verbose" command is used to start the Zsh shell with verbose mode enabled.

When Zsh is started with the "--verbose" flag, it displays detailed information about its execution process. This can be particularly helpful for troubleshooting and understanding the inner workings of Zsh.

In verbose mode, Zsh provides additional output, such as the commands it is executing, the files it is reading, the functions it is loading, and other relevant details. This can be useful for debugging scripts or identifying potential issues in Zsh configuration files.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the zsh tool