From fd0b147e90654e214eb4c03ec860a60350a38b17 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Sat, 21 Jul 2018 23:33:39 -0600 Subject: [PATCH] Added profile.d script to colourize LS output --- bash/etc-profile.d scripts/colourLS.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 bash/etc-profile.d scripts/colourLS.sh diff --git a/bash/etc-profile.d scripts/colourLS.sh b/bash/etc-profile.d scripts/colourLS.sh new file mode 100644 index 0000000..445691e --- /dev/null +++ b/bash/etc-profile.d scripts/colourLS.sh @@ -0,0 +1,4 @@ +### Colourize directory listing using dircolors +export LS_OPTIONS='--color auto' +eval "`dircolors`" +alias ls='ls $LS_OPTIONS'