Trouble editing ~/.bash_profile: -bash: $'\r': command not found
Sophia Terry
I installed CygWin on Windows 7. Using Notepad, I edited my ~/.bash_profile file to add on to the PATH variable …
PATH="${PATH}:/cygdrive/c/apache-ant-1.8.2/bin"Now, when I SSH in to my Windows machine, I get this error …
-bash: $'\r': command not found
-bash: $'\r': command not found
-bash: $'\r': command not found
-bash: $'\r': command not found
-bash: $'\r': command not found
-bash: /home/dev/.bash_profile: line 39: syntax error: unexpected end of fileand my PATH is not set. Anyone know how I can correct this?
13 Answers
As mentioned already, Windows uses \n\r as line separator. Now that you've got the \rs in your .bash_profile, however, you can use the utility dos2unix to remove them.
Probably notepad has added some $'\r', i. e. CR characters - as it is usual under Windows to have CRLF as line terminator.
The solution would be to use another editor which is capable to keep the line endings as they are, e. g. vim for Windows, or Notepad2.
3Depending on the environment you are using, you might be stuck with scripts containing CRLF, i.e. when using Visual SourceSafe, Perforce for Windows etc. to store your files. However, bash has a universal way to get around this problem:
export SHELLOPTS
set -o igncrIf you put this at the start of your .bash_profile or other startup script you may be using, you are out of trouble, as the CRLF sequences before the first command in your startup script do not hurt.