Make MacOS zsh shell to be compatible with bash shell commands
Enable it temporarily in current shell / terminal
# Load Zsh's native completion system, then load the Bash compatibility bridge
autoload -Uz compinit && compinit
autoload -Uz bashcompinit && bashcompinit
Enable it automatically by adding the above commands to ~/.zprofile or ~/.zshrc file
Comments
Post a Comment