]> gitweb.michael.orlitzky.com - bash.d.git/commitdiff
Switch `ls` alias to use --color=auto instead of --color=always.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 24 Nov 2015 13:46:57 +0000 (08:46 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 24 Nov 2015 13:46:57 +0000 (08:46 -0500)
aliases

diff --git a/aliases b/aliases
index 76ecd6434d3c7ac7c1369b27d3108c3fd8ffba3e..ca863fc09aac01ce4f50d80f6c00f9894436cc0c 100644 (file)
--- a/aliases
+++ b/aliases
@@ -1,5 +1,5 @@
 #!/bin/bash
 
-alias df='df -h'
-alias du='du -h -s *'
-alias ls='ls -l -h --color=always --time-style=long-iso'
+alias df='df --human-readable'
+alias du='du --human-readable --summarize *'
+alias ls='ls -l --color=auto --human-readable --time-style=long-iso'