Renamed and moved from Dash to Ash

This commit is contained in:
2014-01-08 16:57:03 +01:00
parent dfa8b8f515
commit 41afd423d9
7 changed files with 18 additions and 20 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