
zsh
List of commands for zsh:
-
zsh:tldr:01946 zsh: Start an interactive shell session.$ zshtry on your machineexplain this command
-
zsh:tldr:178b0 zsh: Execute a specific script.$ zsh ${path-to-script-zsh}try on your machineexplain this command
-
zsh:tldr:3128a zsh: Execute a specific script, printing each command in the script before executing it.$ zsh --xtrace ${path-to-script-zsh}try on your machineexplain this command
-
zsh:tldr:3a457 zsh: Check a specific script for syntax errors without executing it.$ zsh --no-exec ${path-to-script-zsh}try on your machineexplain this command
-
zsh:tldr:5078f zsh: Execute a specific command inside `zsh` with disabled glob patterns.$ noglob ${command}try on your machineexplain this command
-
zsh:tldr:a2710 zsh: Start an interactive shell session in verbose mode, printing each command before executing it.$ zsh --verbosetry on your machineexplain this command
-
zsh:tldr:ba0fd zsh: Execute specific [c]ommands.$ zsh -c "${echo Hello world}"try on your machineexplain this command
-
zsh:tldr:e35a5 zsh: Execute specific commands from stdin.$ ${echo Hello world} | zshtry on your machineexplain this command