Add a NEW user through user accounts settings.
Then login as new user, and delete the old user.
Add a NEW user through user accounts settings.
Then login as new user, and delete the old user.
Start out by making a backup for your .bashrc
mv .bashrc .bashrc.bak
We will want a tool for converting Windows endings to Unix endings for our new .bashrc
sudo apt-get install dos2unix
download the new .bashrc
curl -R "https://raw.githubusercontent.com/flatiron-school/dotfiles/master/.bashrc-windows" >> $HOME/.bashrc
We'll use our converter to convert our bashrc to use the right unix endings:
dos2unix .bashrc