From 132acf608046ade5b0188250c9efba30acb87a3e Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Date: Mon, 17 Nov 2014 08:15:43 +0100 Subject: bash: the GNU coreutils package can be installed without the prefix in OSX. --- bashrc | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'bashrc') diff --git a/bashrc b/bashrc index b95cd19..d70d547 100644 --- a/bashrc +++ b/bashrc @@ -2,13 +2,9 @@ export LC_ALL=en_US.UTF-8 # beautifying ls command -lsc="ls" -if [ `uname` == "Darwin" ]; then - lsc="gls" -fi -alias ls='$lsc --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' -alias ll='$lsc -l --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' -alias la='$lsc -la --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' +alias ls='ls --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' +alias ll='ls -l --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' +alias la='ls -la --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' # Alias related to cd alias ..='cd ..' -- cgit v1.2.3