miguelgfierro / scripts

A collection of useful shell scripts for Linux, Windows & Mac

Home Page:https://miguelgfierro.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fix bashrc and automatically add bash profile

miguelgfierro opened this issue · comments

# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
fi