My personal terminal extensions.
git clone [email protected]:EdCordata/my_bash.git ~/.my_bash
echo '. ~/.my_bash/init.sh' >> ~/.bash_profile
source ~/.bash_profile
Or in one line:
git clone [email protected]:EdCordata/my_bash.git ~/.my_bash && echo '. ~/.my_bash/init.sh' >> ~/.bash_profile && source ~/.bash_profile
git clone https://github.com/EdCordata/my_bash.git ~/.my_bash && echo '. ~/.my_bash/init.sh' >> ~/.bash_profile && source ~/.bash_profile
my_bash_update
To fix wrong line endings, run:
sudo apt install -y dos2unix
cd ~/.my_bash && find . -type f -exec dos2unix "{}" \;