]> err.no Git - dotfiles/commitdiff
work around stuffy freebsd
authortfheen <tfheen@8da78d58-1cd3-0310-bee5-d77bd1b3e8bf>
Sat, 5 Jul 2003 09:37:14 +0000 (09:37 +0000)
committertfheen <tfheen@8da78d58-1cd3-0310-bee5-d77bd1b3e8bf>
Sat, 5 Jul 2003 09:37:14 +0000 (09:37 +0000)
git-svn-id: file:///svn/tfheen/trunk/dotfiles@170 8da78d58-1cd3-0310-bee5-d77bd1b3e8bf

environment

index 7d762436896c168747dc645b447e5da44e4d6156..a93d7d9fb30bf5c533416deabb5c59b61d460999 100644 (file)
@@ -6,6 +6,11 @@ for lsopt in -B --color=auto -FN; do
     ls $lsopt > /dev/null 2>&1 && LS_OPTIONS="$LS_OPTIONS $lsopt"
 done
 
+if [ `uname -s` = "FreeBSD" ]; then
+    unalias ls
+fi
+
+
 setpathifdir () {
     if [ -d "$1" ]; then
         PATH="$1:${PATH%$1}"