From bf0157e7a121957fa8e14174061e9f6df81aa73e Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Sat, 2 Jun 2012 14:01:54 +0900 Subject: [PATCH] fix ls alias --- bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bashrc b/bashrc index 421570c..f82d687 100755 --- a/bashrc +++ b/bashrc @@ -71,9 +71,9 @@ echo # some aliases and functions test "$TERM" == dumb || _coloroption=" --color=always" +iswindows || _timeoption=" --time-style=long-iso" -alias ls="ls -hCF${_coloroption}" -iswindows || alias ls="ls --time-style=long-iso" +alias ls="ls -hCF${_coloroption}${_timeoption}" # export GREP_OPTIONS="" alias grep="grep -n${_coloroption}" # alias ll="ls -l"