which bc > /dev/null && alias bc="bc -q"
which vim > /dev/null && alias vi=vim
+#--------------------------------------------------------------------------------
+# grep
+#
+if ! grep --help 2>&1 | grep -qm1 ^BusyBox; then
+ alias grep='grep --color=auto'
+fi
+
#--------------------------------------------------------------------------------
# ls
#
[ -n "$ls_opt" ] && alias ls="ls${ls_opt}"
[ -n "$ll_opt" ] && alias ll="ls${ll_opt}"
unset ls_opt ll_opt
-
-#--------------------------------------------------------------------------------
-# grep
-#
-if ! grep --help 2>&1 | grep -qm1 ^BusyBox; then
- alias grep='grep --color=auto'
-fi
-