ls $lsopt > /dev/null 2>&1 && LS_OPTIONS="$LS_OPTIONS $lsopt"
done
-if [ `uname -s` = "FreeBSD" ] && alias | grep -q "alias ls"; then
+if [ `uname -s` = "FreeBSD" ] && alias | grep -q "ls="; then
unalias ls
fi
bindkey -e # Emacs-style commandline editing
PROMPT=': %U%n@%m%u %B%30<..<%~%b %(!.#.>) '
-case "$TERM" in
- linux|*xterm*|ansi|linux-lat|screen)
- alias ls="ls --color=tty -FN $LS_OPTIONS"
-;;
- *)
- alias ls="ls -FN $LS_OPTIONS"
-;;
+
+case `uname -s` in
+ "FreeBSD")
+ :
+ ;;
+ *)
+ case "$TERM" in
+ linux|*xterm*|ansi|linux-lat|screen)
+ alias ls="ls --color=tty -FN $LS_OPTIONS"
+ ;;
+ *)
+ alias ls="ls -FN $LS_OPTIONS"
+ ;;
+ esac
+ ;;
esac
+
alias mirror="wget --mirror --no-parent --convert-links -P $HOME/data/www-mirror "
# The following lines were added by compinstall