Import bash startfiles from IPFire 3.x.

This commit is contained in:
Michael Tremer
2012-11-11 23:28:52 +01:00
parent ee11bc4e12
commit b21b0df6a6
16 changed files with 383 additions and 145 deletions

View File

@@ -0,0 +1,7 @@
# Begin ~/.bash_logout
# Personal items to perform on logout.
echo "Bye bye."
# End ~/.bash_logout

View File

@@ -0,0 +1,12 @@
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH

12
config/bash/dot_bashrc Normal file
View File

@@ -0,0 +1,12 @@
# .bashrc
# User specific aliases and functions
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi