Bad pattern error in zprofile terminal

When I launch terminal I see the following error:

"/Users/gursimran/.zprofile:1: bad pattern: ^[[A^[[B". I recently had to factory reset my MacBook Pro (2020 M1) due to an issue when it updated to Ventura 13.6 and am now seeing this issue in terminal. Does anyone know what is causing this and how to resolve it? I recently installed homebrew so maybe that is the cause?


MacBook Pro 13″

Posted on Oct 18, 2023 10:31 AM

Reply
Question marked as Top-ranking reply

Posted on Oct 18, 2023 10:42 AM

You can get by with just ~/.zshrc, and I suspect that homebrew put some nasty crud in your ~/.zprofile. Rename the ~/.zprofile to ~/.zprofile_bak and quit, then relaunch Terminal.


cd
mv ~/.zprofile ~/.zprofile_bak


If you don't have a ~/.zshrc file, then copy/paste the following into the Terminal and press return:


<<"EOF" > ~/.zshrc
export PATH=".:/usr/local/bin:${PATH}"
PS1="%m: %~ %% "
EOF


That will write a ~/.zshrc file with the PATH and prompt PS1 set. You can either quit and relaunch Terminal, or do this followed by a return without quitting the Terminal session:


source ~/.zshrc


3 replies
Question marked as Top-ranking reply

Oct 18, 2023 10:42 AM in response to gursimran_kainth

You can get by with just ~/.zshrc, and I suspect that homebrew put some nasty crud in your ~/.zprofile. Rename the ~/.zprofile to ~/.zprofile_bak and quit, then relaunch Terminal.


cd
mv ~/.zprofile ~/.zprofile_bak


If you don't have a ~/.zshrc file, then copy/paste the following into the Terminal and press return:


<<"EOF" > ~/.zshrc
export PATH=".:/usr/local/bin:${PATH}"
PS1="%m: %~ %% "
EOF


That will write a ~/.zshrc file with the PATH and prompt PS1 set. You can either quit and relaunch Terminal, or do this followed by a return without quitting the Terminal session:


source ~/.zshrc


This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Bad pattern error in zprofile terminal

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.