.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


CategoryMac

BashrcBashprofile (last edited 2010-04-12 07:23:17 by DavidKeen)