Bashpromt erweitert und FTP Upload wieder funktionierend gemacht...

git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@397 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2007-01-25 19:04:11 +00:00
parent 0b59f25c65
commit 71e323840b
16 changed files with 191 additions and 61 deletions

View File

@@ -0,0 +1,9 @@
# Setup for /bin/ls to support color, the alias is in /etc/bashrc.
if [ -f "/etc/dircolors" ] ; then
eval $(dircolors -b /etc/dircolors)
if [ -f "$HOME/.dircolors" ] ; then
eval $(dircolors -b $HOME/.dircolors)
fi
fi
alias ls='ls --color=auto'