The first two lines strongly suggest that a carriage return (`\r`) snuck in before the `'`. Try removing it:
tr -d '\r' <~/.bashrc >~/tmp
mv ~/tmp ~/.bashrc
The first two lines strongly suggest that a carriage return (`\r`) snuck in before the `'`. Try removing it:
tr -d '\r' <~/.bashrc >~/tmp
mv ~/tmp ~/.bashrc