Added Makefile and rc-files

This commit is contained in:
2014-01-08 06:22:25 +01:00
parent 1cfa6e53b9
commit b68e1c9c7d
6 changed files with 238 additions and 7 deletions

19
bashfiles/.profile Normal file
View File

@@ -0,0 +1,19 @@
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
if [ -e /usr/share/terminfo/x/xterm-256color ]; then
export TERM='xterm-256color'
else
export TERM='xterm-color'
fi