]> err.no Git - dotfiles/commitdiff
fix ls alias
authortfheen <tfheen@8da78d58-1cd3-0310-bee5-d77bd1b3e8bf>
Sat, 19 Oct 2002 21:20:13 +0000 (21:20 +0000)
committertfheen <tfheen@8da78d58-1cd3-0310-bee5-d77bd1b3e8bf>
Sat, 19 Oct 2002 21:20:13 +0000 (21:20 +0000)
git-svn-id: file:///svn/tfheen/trunk/dotfiles@81 8da78d58-1cd3-0310-bee5-d77bd1b3e8bf

bashrc

diff --git a/bashrc b/bashrc
index fa23a279aab0cdc10a77f71a82e5463f08a4b2d3..2f7b5ca13fb5e3c0d9565de85dc8d2ebdcafe7f9 100644 (file)
--- a/bashrc
+++ b/bashrc
@@ -17,6 +17,7 @@ fi
 if [ -f "$HOME/.environment" ]; then
     . $HOME/.environment
 fi
+alias ls="ls $LS_OPTIONS"
 
 ATTR_FET="\[\033[1m\]"
 ATTR_UND="\[\033[4m\]"
@@ -25,10 +26,8 @@ ATTR_AV="\[\033[m\]"
 case $TERM in
     linux|xterm|ansi|linux-lat)
         export PS1=": ${ATTR_FET}\u@\h \w \\\$${ATTR_AV} "
-        alias ls="ls --color=tty -FN $LS_OPTIONS"
         export PS2="${ATTR_FET}>${ATTR_AV}";;
     *) 
-        alias ls="ls -FN $LS_OPTIONS"
         export PS1="\u@\h:\w\$"
         export PS2=">$";;
 esac