diff --git a/README.md b/README.md index 7521eaa..844fd07 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,26 @@ If you don't have Homebrew installed, or are running Linux: ```bash /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/AssemblyAI/assemblyai-cli/main/install.sh)" ``` +Load the shell configuration file +```bash +case "$SHELL" in + *bash*) + if [ -f "$HOME/.bashrc" ]; then + # if the shell contains "bash" and .bashrc is present + source $HOME/.bashrc + fi + ;; + *zsh*) + if [ -f "$HOME/.zshrc" ]; then + # if the shell contains "zsh" and .zshrc is present + source $HOME/.zshrc + fi + ;; + *) + echo "Unknown shell or required configuration file not found." + ;; +esac +``` ### Windows