.bashrc
# .bashrc
# This is for non-login shells
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
alias ll='ls -l'
alias ls='ls -G'
.bash_profile
# .bash_profile
# This is for login shells
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
