From 6bd83f85c67ee0ffb899d70f84cae17c8b77f666 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Wed, 29 Aug 2012 21:11:36 +0900 Subject: [PATCH] do not use ls --hide option it makes ls not show Makefile --- bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bashrc b/bashrc index b6354cd..ceb302b 100755 --- a/bashrc +++ b/bashrc @@ -92,9 +92,9 @@ echo ( ! with_coreutils && isdarwin ) || test "$TERM" == dumb || _coloroption=" --color=auto" ( ! with_coreutils && isdarwin ) || iswindows || _timeoption=" --time-style=long-iso" -( ! with_coreutils && isdarwin ) || _hideoption=" --hide=[A-Z]*" +( ! with_coreutils && isdarwin ) || _hideoption=" --hide=[A-Z]*" # do not use -alias ls="ls -hCF${_coloroption}${_timeoption}${_hideoption}" +alias ls="ls -hCF${_coloroption}${_timeoption}" # export GREP_OPTIONS="" alias grep="grep -n${_coloroption}" iswindows && alias grep="grep -n"